pub trait HistogramProperty {
    type Type;
    // Required methods
    fn insert(&self, value: Self::Type);
    fn insert_multiple(&self, value: Self::Type, count: usize);
    fn clear(&self);
}Expand description
Trait implemented by all histogram properties providing common operations.
Required Associated Types§
Required Methods§
Sourcefn insert_multiple(&self, value: Self::Type, count: usize)
 
fn insert_multiple(&self, value: Self::Type, count: usize)
Inserts the given value in the histogram count times.