Expand description
Traits Future
, Stream
, AsyncRead
, AsyncWrite
, AsyncBufRead
,
AsyncSeek
, and their extensions.
§Examples
use futures_lite::prelude::*;
Traits§
- Async
BufRead - Read bytes asynchronously.
- Async
Read - Read bytes asynchronously.
- Async
Seek - Seek bytes asynchronously.
- Async
Write - Write bytes asynchronously.
- Future
- A future represents an asynchronous computation obtained by use of
async
. - Stream
- A stream of values produced asynchronously.
- _
- Extension trait for
Future
. - _
- Extension trait for
Stream
. - _
- Extension trait for
AsyncBufRead
. - _
- Extension trait for
AsyncRead
. - _
- Extension trait for
AsyncSeek
. - _
- Extension trait for
AsyncWrite
.