pub trait FillWith<D> {
// Required method
fn fill_with(&mut self, value: D);
}
Expand description
Fill a histogram bin value with some data.
Fill a histogram with some value. This trait has a blanket implementation for AddAssign. In the case of primitive histogram values, this is equivalent to a weighted fill.