| 333 | /// Aggregate statistics |
| 334 | #[derive(Debug, Clone)] |
| 335 | pub struct AggregateStats { |
| 336 | pub count: f64, |
| 337 | pub sum: f64, |
| 338 | pub avg: f64, |
| 339 | pub min: f64, |
| 340 | pub max: f64, |
| 341 | } |
| 342 | |
| 343 | /// Fixture type |
| 344 | #[derive(Debug, Clone)] |
nothing calls this directly
no outgoing calls
no test coverage detected