pub struct SQLite; impl DatabaseDriver for SQLite { fn query(&self, _query: &str) -> Result<(), ()> { Ok(()) } }