Struct hdrhistogram::CountIterItem [] [src]

pub struct CountIterItem {
    pub count_added_in_this_iteration_step: u64,
    pub count: u64,
    pub value: u64,
    pub highest_equivalent_value: u64,
    pub median_equivalent_value: u64,
    pub lowest_equivalent_value: u64,
    // some fields omitted
}

Iterator result producing counts.

Fields

count_added_in_this_iteration_step

The count of recorded values in the histogram that were added to the total_count_to_this_value (below) as a result on this iteration step. Since multiple iteration steps may occur with overlapping equivalent value ranges, the count may be lower than the count found at the value (e.g. multiple linear steps or percentile levels can occur within a single equivalent value range)

count

The sum of all recorded values in the histogram at values equal or smaller than value_from_index.

value

The actual value level that was iterated to by the iterator

highest_equivalent_value

Highest value equivalent to value.

median_equivalent_value

Median value equivalent to value.

lowest_equivalent_value

Lowest value equivalent to value.

Trait Implementations

Derived Implementations

impl Debug for CountIterItem

fn fmt(&self, __arg_0: &mut Formatter) -> Result

impl Copy for CountIterItem

impl Clone for CountIterItem

fn clone(&self) -> CountIterItem

fn clone_from(&mut self, source: &Self)

impl Ord for CountIterItem

fn cmp(&self, __arg_0: &CountIterItem) -> Ordering

impl PartialOrd for CountIterItem

fn partial_cmp(&self, __arg_0: &CountIterItem) -> Option<Ordering>

fn lt(&self, __arg_0: &CountIterItem) -> bool

fn le(&self, __arg_0: &CountIterItem) -> bool

fn gt(&self, __arg_0: &CountIterItem) -> bool

fn ge(&self, __arg_0: &CountIterItem) -> bool

impl Eq for CountIterItem

impl PartialEq for CountIterItem

fn eq(&self, __arg_0: &CountIterItem) -> bool

fn ne(&self, __arg_0: &CountIterItem) -> bool