1pub trait Metric { 2 fn name(&self) -> &str; 3 fn value(&self) -> f64; 4 fn description(&self) -> &str; 5}