pub trait DatabaseConnection { // Required method fn execute(&mut self, query: &str) -> Result<u64, DatabaseError>; }
Database connection trait