pub trait Executor<Fut> { // Required method fn execute(&self, fut: Fut); }
An executor of futures.
This trait allows abstract over async runtimes. Implement this trait for your own type.
Place the future into the executor to be run.