pub trait Driver: Send { // Required method fn open(&mut self, url: &str) -> Result<Box<dyn Connection>>; }