Module buffered
Buffering wrappers for I/O traits
Modules
Structs
-
BufReader
The
BufReader<R>struct adds buffering to any reader. - BufWriter Wraps a writer and buffers its output.
-
IntoInnerError
An error returned by
BufWriter::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. -
LineWriter
Wraps a writer and buffers output to it, flushing whenever a newline
(
0x0a,'\n') is detected. -
WriterPanicked
Error returned for the buffered data from
BufWriter::into_parts, when the underlying writer has previously panicked. Contains the (possibly partly written) buffered data.