Expand description
IO
This module contains a number of functions for working with
AsyncRead
and AsyncWrite
types, including the
AsyncReadExt
and AsyncWriteExt
traits which add methods
to the AsyncRead
and AsyncWrite
types.
Structs§
- Allow
StdIo - A simple wrapper type which allows types which implement only
implement
std::io::Read
orstd::io::Write
to be used in contexts which expect anAsyncRead
orAsyncWrite
. - Close
- A future used to fully close an I/O object.
- Copy
Into - A future which will copy all data from a reader into a writer.
- Flush
- A future used to fully flush an I/O object.
- IoVec
- A specialized byte slice type for performing vectored I/O operations.
- Read
- A future which can be used to easily read available number of bytes to fill a buffer.
- Read
Exact - A future which can be used to easily read exactly enough bytes to fill a buffer.
- Read
Half - The readable half of an object returned from
AsyncRead::split
. - Read
ToEnd - A future which can be used to easily read the entire contents of a stream into a vector.
- Window
- A owned window around an underlying buffer.
- Write
All - A future used to write the entire contents of some data to a stream.
- Write
Half - The writable half of an object returned from
AsyncRead::split
.
Traits§
- Async
Read - Read bytes asynchronously.
- Async
Read Ext - An extension trait which adds utility methods to
AsyncRead
types. - Async
Write - Write bytes asynchronously.
- Async
Write Ext - An extension trait which adds utility methods to
AsyncWrite
types.