Trait thread_pool::TaskBox [] [src]

pub trait TaskBox: Send + 'static {
    fn run_box(self: Box<Self>);
}

A version of Task intended to use as a trait object

Required Methods

Run the task

Implementors