Trait CharStringExt

Source
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.

Required Methods§

Source

fn to_lower(&self) -> Cow<'_, [char]>

Source

fn to_string(&self) -> String

Implementations on Foreign Types§

Source§

impl CharStringExt for [char]

Source§

fn to_lower(&self) -> Cow<'_, [char]>

Source§

fn to_string(&self) -> String

Implementors§