Expand description
Useful runtime-agnostic future implementations.
Modules§
- never
- Provides the
Neverfuture that never completes. - now_
or_ later - Provides the
NowOrLaterfuture with an explicitNowvariant - pagination_
stream - Provides types to support stream-like operations for paginators.
- rendezvous
- Rendezvous channel implementation
- timeout
- Provides the
Timeoutfuture for adding a timeout to another future.
Type Aliases§
- BoxFuture
- A boxed future that outputs a
Result<T, E>.