Struct hdrhistogram::CountIterItem [] [src]

pub struct CountIterItem {
    pub count_added_in_this_iteration_step: u64,
    pub count_to_index: u64,
    pub value_from_index: u64,
    pub highest_equivalent_value: u64,
    pub count_at_index: u64,
}

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_to_index

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

value_from_index

The actual value level that was iterated to by the iterator

highest_equivalent_value

Highest value equivalent to value_from_index.

count_at_index

The count of recorded values in the histogram that exactly match this lowest_equivalent_value(value_from_index)..highest_equivalent_value(value_from_index) value range.

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