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§
- An iterator over
u8
values of a reader. - A
Cursor
wraps an in-memory buffer and provides it with aSeek
implementation.
Enums§
- A list specifying general categories of I/O error.
- Enumeration of possible methods to seek within an I/O object.
Traits§
- 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.
Type Aliases§
- A specialized
Result
type for I/O operations.