Trait bytelines::ByteLinesReader
source · [−]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
fn byte_lines(self) -> ByteLines<B>
fn byte_lines(self) -> ByteLines<B>
Returns a structure used to iterate the lines of this reader as Result<&[u8], _>.
Implementors
impl<B> ByteLinesReader<B> for B where
B: BufRead,
Blanket implementation for all BufRead.