StringIterable

Trait StringIterable 

Source
pub trait StringIterable {
    // Required method
    fn str_iter<'t>(&'t self) -> StringIter<'t> ;
}
Expand description

A struct that can be iterated with a StringIter

Required Methods§

Source

fn str_iter<'t>(&'t self) -> StringIter<'t>

Construct a new StringIter

Implementors§

Source§

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