Skip to main content

Module buffered

Module buffered 

Source
Expand description

Buffering wrappers for I/O traits

Structsยง

BufReader
The BufReader struct adds buffering to any reader.
BufWriter
Wraps a writer and buffers its output.
IntoInnerError
An error returned by into_inner which 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.