pub trait Executor<Fut> { // Required method fn execute(&self, fut: Fut); }
An executor of futures.
Place the future into the executor to be run.