Struct std::io::SplitUnstable [-] [+] [src]

pub struct Split<B> {
    // some fields omitted
}

An iterator over the contents of an instance of BufRead split on a particular byte.

See BufReadExt::split for more information.

Trait Implementations

impl<B: BufRead> Iterator for Split<B>

type Item = Result<Vec<u8>>

fn next(&mut self) -> Option<Result<Vec<u8>>>

fn size_hint(&self) -> (usize, Option<usize>)