pub trait CharLen {
    // Required method
    fn char_len(&self) -> usize;
}

Required Methods§

source

fn char_len(&self) -> usize

Returns the number of characters in the text

Implementors§