pub trait Executor<Fut> {
    fn execute(&self, fut: Fut);
}
Expand description

An executor of futures.

Required Methods

Place the future into the executor to be run.

Implementors