[][src]Trait threader::executor::Executor

pub trait Executor<F: Future> {
    fn spawn(&self, future: F);
}

Required methods

fn spawn(&self, future: F)

Loading content...

Implementors

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

Loading content...