Struct hdrhistogram::PercentileIterItem
[−]
[src]
pub struct PercentileIterItem {
pub percentile: f64,
pub count_to_index: u64,
pub value_from_index: u64,
pub highest_equivalent_value: u64,
pub count_at_index: u64,
}Iterator result producing percentiles.
Fields
percentile | The percentile of recorded values in the histogram at values equal or smaller than |
count_to_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_equivalent_value | Highest value equivalent to |
count_at_index | The count of recorded values in the histogram that exactly match this
|