736HJN5EZZL5KLZP52TZQLDFE6ZXWEBLUHTHUE4IZ3EOUE3MNHAAC impl fmt::Display for CategorySeries {fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {let mut s = String::new();for (i, series) in self.seriess.iter().enumerate() {s.push_str(&i.to_string());s.push('\n');s.push_str(&series.to_string());s.push('\n');};write!(f, "{}", s)}}