Runable

Trait Runable 

Source
pub trait Runable {
    // Required method
    fn call(self: Box<Self>);
}
Expand description

The Runable trait for FnOnce()

Required Methods§

Source

fn call(self: Box<Self>)

Implementors§

Source§

impl<F: FnOnce()> Runable for F