1pub trait Database { 2 const SYSTEM: &'static str; 3} 4 5pub trait DatabaseInstance { 6 fn database_name(&self) -> impl std::fmt::Display; 7}