std.io
Types for core IO functionality.
The IO module provides the basic building blocks for IO operations such as reading from and writing to a file.
Methods
| copy_using | Copies data from | |
| start_blocking | Signals the start of a C function call that may perform blocking IO operations. | |
| stop_blocking | Signals the end of a C function call that may perform blocking IO operations. |
Traits
| BufferedRead | A | |
| Read | A type data can be read from (e.g. a File). | |
| Seek | Trait for seeking to a given offset in a stream of bytes. | |
| Write | A type data can be written to (e.g. a File). |
Types
| Buffer | An in-memory buffer that supports reads and seeks. | |
| BufferedReader | A type for performing buffered reads from a | |
| BufferedWriter | A type that wraps a | |
| CopyError | An error produced by | |
| Value | Error | An error type for I/O operations. |
| LimitReader | A type that implements | |
| ReadExactError | An error produced when reading an exact number of bytes. | |
| Value | SeekFrom | The direction/position to seek from. |