pub struct IterEntry {
pub value_lo: u64,
pub value_hi: u64,
pub count: u64,
pub cumulative: u64,
}Expand description
One step of histogram iteration.
Fields§
§value_lo: u64Lower bound (inclusive) of the value band.
value_hi: u64Upper bound (exclusive) of the value band. u64::MAX for the
final open band.
count: u64Count of records in this band.
cumulative: u64Cumulative count from the start of iteration through this band.
Trait Implementations§
impl Copy for IterEntry
impl Eq for IterEntry
impl StructuralPartialEq for IterEntry
Auto Trait Implementations§
impl Freeze for IterEntry
impl RefUnwindSafe for IterEntry
impl Send for IterEntry
impl Sync for IterEntry
impl Unpin for IterEntry
impl UnsafeUnpin for IterEntry
impl UnwindSafe for IterEntry
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