pub trait Metrics { type Error: Debug + Error; // Required method fn export(&self) -> Result<String, Self::Error>; }