pub trait CharStringExt {
// Required methods
fn to_lower(&self) -> Cow<'_, [char]>;
fn to_string(&self) -> String;
}
Expand description
Extensions to character sequences that make them easier to wrangle.
pub trait CharStringExt {
// Required methods
fn to_lower(&self) -> Cow<'_, [char]>;
fn to_string(&self) -> String;
}
Extensions to character sequences that make them easier to wrangle.