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

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)

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

The actual value level that was iterated to by the iterator

Highest value equivalent to value.

Median value equivalent to value.

Lowest value equivalent to value.

Trait Implementations

impl PartialEq for CountIterItem
[src]

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

This method tests for !=.

impl Eq for CountIterItem
[src]

impl PartialOrd for CountIterItem
[src]

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl Ord for CountIterItem
[src]

This method returns an Ordering between self and other. Read more

impl Clone for CountIterItem
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for CountIterItem
[src]

impl Debug for CountIterItem
[src]

Formats the value using the given formatter.