Struct std::io::util::IterReaderExperimental
[-]
[+]
[src]
pub struct IterReader<T> { // some fields omitted }
An adaptor converting an Iterator<u8>
to a Reader
.
Methods
impl<T: Iterator<u8>> IterReader<T>
fn new(iter: T) -> IterReader<T>
Creates a new IterReader
which will read from the specified
Iterator
.