Struct stats::Histogram[][src]

pub struct Histogram<T> {
    pub bucket_bounds: Vec<T>,
    pub counts: Vec<usize>,
}

Discretised histogram.

Fields

Bounds of each bucket.

Count within each bucket.

Trait Implementations

impl<T: Debug> Debug for Histogram<T>
[src]

Formats the value using the given formatter. Read more

impl<T: PartialEq> PartialEq for Histogram<T>
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

impl<T> Send for Histogram<T> where
    T: Send

impl<T> Sync for Histogram<T> where
    T: Sync