Trait dterm::IterChars [] [src]

pub trait IterChars<T> {
    type Iter: Iterator<Item = T>;
    fn iter_chars(self) -> Self::Iter;
}

Iterate characters in a string.

Associated Types

Required Methods

Implementors