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

Represents anything which can provide iterators of byte lines.

Required methods

Returns a structure used to iterate the lines of this reader as Result<&[u8], _>.

Implementors

Blanket implementation for all BufRead.