Expand description
A prelude for the agnostik crate.
Structs§
- Agnostik
- This struct doesn’t have any functionality. It’s only use is to have a nice API to create executors for different runtimes.
Traits§
- Agnostik
Executor - and wait for a future to finish.
- Local
Agnostik Executor - This trait represents an executor that is capable of spawning futures onto the same thread.
Functions§
- block_
on block_onwill use the global executor instance, which is determined by the cargo features, to block until the given future has finished.- spawn
spawnwill use the global executor instance, which is determined by the cargo features, to spawn the given future.- spawn_
blocking spawn_blockingwill use the global executor instance, which is determined by the cargo features, to spawn the given blocking task.