Trait fuchsia_inspect::types::HistogramProperty
source · 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.