Expand description
Traits, helpers, and type definitions for core I/O functionality.
Re-exports
pub use self::stdio::__print_impl;
Modules
- The I/O Prelude.
Structs
- The
BufReader<R>
struct adds buffering to any reader. - Struct for poll result.
- A handle to the standard input stream of a process.
- A handle to the global standard output stream of the current process.
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.
Functions
- Constructs a new handle to the standard input of the current process.
- Constructs a new handle to the standard output of the current process.