Module bevy::tasks::futures_lite::prelude
source · Expand description
Traits Future
, Stream
, AsyncRead
, AsyncWrite
, AsyncBufRead
,
AsyncSeek
, and their extensions.
Examples
use futures_lite::prelude::*;
Traits
- Read bytes asynchronously.
- Read bytes asynchronously.
- Seek bytes asynchronously.
- Write bytes asynchronously.
- A future represents an asynchronous computation obtained by use of
async
. - 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
.