pub trait ByteLinesReader<B>where
    B: BufRead,
{ fn byte_lines(self) -> ByteLines<B>; fn byte_lines_iter(self) -> ByteLinesIter<B> ; }
Expand description

Represents anything which can provide iterators of byte lines.

Required Methods§

Returns an structure used to iterate the lines of this reader as &[u8].

Returns an iterator over the lines of this reader as Vec<u8>.

Implementors§

Blanket implementation for all BufRead.