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

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

An executor of futures.

Required methods

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

Place the future into the executor to be run.

Loading content...

Implementors

impl<F> Executor<F> for ServerExecutor where
    F: Future<Output = ()> + Send + 'static, 
[src]

Loading content...