pub trait LuStrExt {
    type Char: LuChar;

    fn as_slice(&self) -> &[<Self::Char as LuChar>::Int];
    fn to_string(&self) -> String;
    fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>;

    fn from_slice(slice: &[<Self::Char as LuChar>::Int]) -> &[Self::Char] { ... }
}

Required Associated Types

Required Methods

Provided Methods

Implementors