pub trait SomeString<'a> {
    // Required method
    fn iter_chars(&self) -> Box<dyn Iterator<Item = char> + 'a>;
}

Required Methods§

source

fn iter_chars(&self) -> Box<dyn Iterator<Item = char> + 'a>

Trait Implementations§

source§

impl<'a> Debug for dyn SomeString<'a> + 'a

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'a> SomeString<'a> for Box<dyn SomeString<'a> + 'a>

source§

fn iter_chars(&self) -> Box<dyn Iterator<Item = char> + 'a>

Implementations on Foreign Types§

source§

impl<'a> SomeString<'a> for Box<dyn SomeString<'a> + 'a>

source§

fn iter_chars(&self) -> Box<dyn Iterator<Item = char> + 'a>

Implementors§

source§

impl<'a> SomeString<'a> for NameString<'a>