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
Implementors
impl<F: FnOnce()> Runnable for F