pub trait Driver: 'static { // Required methods fn handle(&self) -> Box<dyn Notify>; fn run(&self, rt: &Runtime) -> Result<()>; fn clear(&self); }