Expand description
A swappable version of std::io that works in no_std + alloc environments.
If the feature flag std is enabled (as it is by default), this will just re-export types from std::io.
Modules§
Structs§
- Bytes
- An iterator over
u8values of a reader. - Cursor
- A
Cursorwraps an in-memory buffer and provides it with aSeekimplementation. - Error
- The error type for I/O operations of the
Read,Write,Seek, and associated traits.
Enums§
- Error
Kind - A list specifying general categories of I/O error.
- Seek
From - Enumeration of possible methods to seek within an I/O object.
Traits§
- Read
- The
Readtrait allows for reading bytes from a source. - Seek
- The
Seektrait provides a cursor which can be moved within a stream of bytes. - Stream
Position