pub trait Runnable { // Required method fn run(&self) -> Result<(), Box<dyn Error>>; }
Trait that promises to have a run function.