pub trait TextIterator<'a>: Iterator<Item = &'a u8> { }
Type alias for an iterator over a sequence, i.e. Iterator<Item=&u8>.
Iterator<Item=&u8>