Expand description
Asynchronous I/O
This crate contains the AsyncRead
and AsyncWrite
traits, the
asynchronous analogs to std::io::{Read, Write}
. The primary difference is
that these traits integrate with the asynchronous task system.
Structs§
- A type used to conditionally initialize buffers passed to
AsyncRead
methods, modeled afterstd
. - A specialized byte slice type for performing vectored I/O operations.
Enums§
- A list specifying general categories of I/O error.
Traits§
- Read bytes asynchronously.
- Write bytes asynchronously.
Type Aliases§
- A specialized
Result
type for I/O operations.