#[repr(C)]pub struct HistogramEntry {
pub value: f64,
pub count: i64,
}Expand description
Exact sparse histogram entry produced by Δ^k-DRESS.
Fields§
§value: f64§count: i64Trait Implementations§
Source§impl Clone for HistogramEntry
impl Clone for HistogramEntry
Source§fn clone(&self) -> HistogramEntry
fn clone(&self) -> HistogramEntry
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 HistogramEntry
impl Debug for HistogramEntry
Source§impl PartialEq for HistogramEntry
impl PartialEq for HistogramEntry
impl Copy for HistogramEntry
impl StructuralPartialEq for HistogramEntry
Auto Trait Implementations§
impl Freeze for HistogramEntry
impl RefUnwindSafe for HistogramEntry
impl Send for HistogramEntry
impl Sync for HistogramEntry
impl Unpin for HistogramEntry
impl UnsafeUnpin for HistogramEntry
impl UnwindSafe for HistogramEntry
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