There are executors for more specific use cases.
- For example,
bastion
is a "Highly-available Distributed Fault-tolerant Runtime", inspired by Erlang, and including an async executor. embassy
includes an async executor specifically for embedded systems.fuchsia-async
is an executor for use in the Fuchsia OS.wasm-bindgen-futures
converts RustFuture
s to JavaScriptPromise
s and schedules them to run to completion. It could also be seen as a (very basic) executor.