pub trait DatabaseHandle: Send + Sync {
// Required methods
fn is_connected(&self) -> bool;
fn as_any(&self) -> &dyn Any;
}Expand description
Database handle trait - opaque handle to database The actual Database implementation is in the database module