Structs§
- An iterator over
u8
values of a reader. - Adaptor to chain together two readers.
- A
Cursor
wraps an in-memory buffer and provides it with aSeek
implementation. - Reader adaptor which limits the bytes read from an underlying reader.
Enums§
- A list specifying general categories of I/O error.
- Enumeration of possible methods to seek within an I/O object.
Traits§
- A
BufRead
is a type ofRead
er which has an internal buffer, allowing it to perform extra ways of reading. - The
Read
trait allows for reading bytes from a source. - The
Seek
trait provides a cursor which can be moved within a stream of bytes. - A trait for objects which are byte-oriented sinks.
Type Aliases§
- A specialized
Result
type for I/O operations.