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

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

An executor of futures.

Required methods

fn execute(&self, fut: Fut)[src][]

Place the future into the executor to be run.

Implementors