Runnable

Trait Runnable 

Source
pub trait Runnable {
    // Required method
    fn run(&self) -> Result<(), Box<dyn Error>>;
}
Expand description

Trait that promises to have a run function.

Required Methods§

Source

fn run(&self) -> Result<(), Box<dyn Error>>

Implementors§