Struct std::io::util::IterReader[src]
pub struct IterReader<T> {
// some fields omitted
}A Reader which converts an Iterator<u8> into a Reader.
Methods
impl<T: Iterator<u8>> IterReader<T>
fn new(iter: T) -> IterReader<T>
Create a new IterReader which will read from the specified Iterator.