Expand description
Buffering wrappers for I/O traits
Structsยง
- BufReader
- The
BufReaderstruct adds buffering to any reader. - BufWriter
- Wraps a writer and buffers its output.
- Into
Inner Error - An error returned by
into_innerwhich combines an error that happened while writing out the buffer, and the buffered writer object which may be used to recover from the condition. - Line
Writer - Wraps a writer and buffers output to it, flushing whenever a newline
(
0x0a,'\n') is detected.