pub struct HistogramSnapshot {
pub count: u64,
pub avg: f64,
pub min: f64,
pub max: f64,
}Fields§
§count: u64§avg: f64§min: f64§max: f64Trait Implementations§
Source§impl Clone for HistogramSnapshot
impl Clone for HistogramSnapshot
Source§fn clone(&self) -> HistogramSnapshot
fn clone(&self) -> HistogramSnapshot
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 HistogramSnapshot
impl Debug for HistogramSnapshot
Source§impl PartialEq for HistogramSnapshot
impl PartialEq for HistogramSnapshot
impl StructuralPartialEq for HistogramSnapshot
Auto Trait Implementations§
impl Freeze for HistogramSnapshot
impl RefUnwindSafe for HistogramSnapshot
impl Send for HistogramSnapshot
impl Sync for HistogramSnapshot
impl Unpin for HistogramSnapshot
impl UnsafeUnpin for HistogramSnapshot
impl UnwindSafe for HistogramSnapshot
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