Expand description
Macros§
- error
- Constructs a new
Errorfrom anio::ErrorKindvariant identifier and a&'static str.
Structs§
- Error
- The error type for zero-copy I/O operations of the
ReadandWritetraits. - IoReader
std - The
IoReader<R>struct implementsRead<'data>to any reader. - IoWriter
std - The
IoWriter<W>struct implementsWriteto any I/O writer.
Traits§
- Read
- The
Read<'data>trait allows for reading bytes with a lifetime of'datafrom some source. - Write
- A simplified facade of
io::Writefor easier use in possiblyno_stdenvironments.
Type Aliases§
- Error
Kind std - A convenient alias for
io::ErrorKind. - Result
- A specialized
Resulttype forzc_io.