Trait jobpool::Runnable [] [src]

pub trait Runnable {
    fn run(self: Box<Self>);
}

A trait for giving a type an ability to run some code.

Required Methods

Runs some code.

Implementors