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,
/* private fields */
}
Expand description
Iterator result producing counts.
Fields§
§count_added_in_this_iteration_step: u64
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: u64
The sum of all recorded values in the histogram at values equal or smaller than value_from_index
.
value: u64
The actual value level that was iterated to by the iterator
highest_equivalent_value: u64
Highest value equivalent to value
.
median_equivalent_value: u64
Median value equivalent to value
.
lowest_equivalent_value: u64
Lowest value equivalent to value
.
Trait Implementations§
Source§impl Clone for CountIterItem
impl Clone for CountIterItem
Source§fn clone(&self) -> CountIterItem
fn clone(&self) -> CountIterItem
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for CountIterItem
impl Debug for CountIterItem
Source§impl Ord for CountIterItem
impl Ord for CountIterItem
Source§fn cmp(&self, other: &CountIterItem) -> Ordering
fn cmp(&self, other: &CountIterItem) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for CountIterItem
impl PartialEq for CountIterItem
Source§impl PartialOrd for CountIterItem
impl PartialOrd for CountIterItem
impl Copy for CountIterItem
impl Eq for CountIterItem
impl StructuralPartialEq for CountIterItem
Auto Trait Implementations§
impl Freeze for CountIterItem
impl RefUnwindSafe for CountIterItem
impl Send for CountIterItem
impl Sync for CountIterItem
impl Unpin for CountIterItem
impl UnwindSafe for CountIterItem
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more