Struct hdrhistogram_c::PercentileIterItem [] [src]

pub struct PercentileIterItem {
    pub percentile: f64,
    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 percentiles.

Fields

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

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 PercentileIterItem
[src]

[src]

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

[src]

This method tests for !=.

impl PartialOrd for PercentileIterItem
[src]

[src]

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

[src]

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

[src]

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

[src]

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

[src]

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

impl Clone for PercentileIterItem
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for PercentileIterItem
[src]

impl Debug for PercentileIterItem
[src]

[src]

Formats the value using the given formatter.