1pub struct All<T> { 2 pub min: T, 3 pub max: T, 4 pub average: T, 5 pub variance: T, 6 pub standard_deviation: T, 7}