Expand description
Utilities for working with I/O using byte strings.
This module currently only exports a single trait, BufReadExt
, which provides
facilities for conveniently and efficiently working with lines as byte strings.
More APIs may be added in the future.
Structs§
- Byte
Lines - An iterator over lines from an instance of
std::io::BufRead
. - Byte
Records - An iterator over records from an instance of
std::io::BufRead
.
Traits§
- BufRead
Ext - An extension trait for
std::io::BufRead
which provides convenience APIs for dealing with byte strings.