Struct hdrhistogram::F64CountIterItem [] [src]

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

Iterator result over F64Histogram containing 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 F64CountIterItem

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

impl Copy for F64CountIterItem

impl Clone for F64CountIterItem

fn clone(&self) -> F64CountIterItem

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

impl PartialOrd for F64CountIterItem

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

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

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

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

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

impl PartialEq for F64CountIterItem

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

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