pub trait DBStatistics {
// Provided method
fn get_statistics(&self) -> Option<String> { ... }
}Expand description
Traits for collecting DB stats
Provided Methods§
fn get_statistics(&self) -> Option<String>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".