pub trait DriverGeneric: Send { // Required methods fn open(&mut self) -> Result<(), String>; fn close(&mut self) -> Result<(), String>; }