Skip to main content

StringExt

Trait StringExt 

Source
pub trait StringExt {
    // Required method
    fn expand_tabs(&self, tab_size: u16) -> Cow<'_, str>;
}

Required Methods§

Source

fn expand_tabs(&self, tab_size: u16) -> Cow<'_, str>

Implementors§

Source§

impl<T> StringExt for T
where T: AsRef<str>,