Trait hyper::rt::Executor[][src]

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