pub trait TextIterator<'a>: Iterator<Item = &'a u8> { }
Expand description

Type alias for an iterator over a sequence, i.e. Iterator<Item=&u8>.

Implementors