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§
Sourcefn str_iter<'t>(&'t self) -> StringIter<'t> ⓘ
fn str_iter<'t>(&'t self) -> StringIter<'t> ⓘ
Construct a new StringIter