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

Represents anything which can provide iterators of byte lines.

Required Methods§

source

fn byte_lines(self) -> ByteLines<B>

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

Implementors§

source§

impl<B> ByteLinesReader<B> for B
where B: BufRead,

Blanket implementation for all BufRead.