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 |
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
|