Expand description
std::io
-like I/O traits for no_std
environment.
Modules
- The I/O Prelude.
Structs
- The
BufReader<R>
struct adds buffering to any reader. - I/O poll results.
Enums
- The error type used by ArceOS.
- 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.