pub trait Metric {
// Required methods
fn name(&self) -> &str;
fn value(&self) -> f64;
fn description(&self) -> &str;
}pub trait Metric {
// Required methods
fn name(&self) -> &str;
fn value(&self) -> f64;
fn description(&self) -> &str;
}