Module io
Source - BufReader
- The
BufReader<R>
struct adds buffering to any reader. - BufWriter
- Wraps a writer and buffers its output.
- Error
- The error type for I/O operations of the
Read
, Write
, Seek
, and
associated traits. - ErrorKind
- A list specifying general categories of I/O error.
- SeekFrom
- Enumeration of possible methods to seek within an I/O object.
- BufRead
- A
BufRead
is a type of Read
er which has an internal buffer, allowing it
to perform extra ways of reading. - Read
- The
Read
trait allows for reading bytes from a source. - Seek
- The
Seek
trait provides a cursor which can be moved within a stream of
bytes. - Write
- A trait for objects which are byte-oriented sinks.