pub trait IntoTextIterator<'a>: IntoIterator<Item = &'a u8> { }
Expand description

Type alias for a type that can be coerced into a TextIterator. This includes &Vec<u8>, &[u8], Iterator<Item=&u8>.

Implementors