Modules§
- future
- Asynchronous values.
Structs§
- Drop
Guard Action - A drop guard that runs a finalizer when dropped.
- Join
Handle - Equivalent to
tokio::task::JoinHandle
. - Mask
Future AsSend
Traits§
- Future
Ext - An extension trait for
Future
s that provides a variety of convenient adapters.
Functions§
- spawn
- Equivalent to
tokio::task::spawn
, but does not require the future to beSend
. Must only be used on aRuntimeFlavor::CurrentThread
executor, though this is only checked when running with debug assertions. - spawn_
blocking - Equivalent to
tokio::task::spawn_blocking
. Currently a thin wrapper around the tokio API, but this may change in the future.