pub struct SignedDurationStats {
pub count: u64,
pub total_ns: i128,
pub min_ns: Option<i128>,
pub max_ns: Option<i128>,
pub mean_ns: f64,
pub variance_ns2: f64,
}Fields§
§count: u64§total_ns: i128§min_ns: Option<i128>§max_ns: Option<i128>§mean_ns: f64§variance_ns2: f64Implementations§
Trait Implementations§
Source§impl Clone for SignedDurationStats
impl Clone for SignedDurationStats
Source§fn clone(&self) -> SignedDurationStats
fn clone(&self) -> SignedDurationStats
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SignedDurationStats
impl Debug for SignedDurationStats
Source§impl PartialEq for SignedDurationStats
impl PartialEq for SignedDurationStats
Source§fn eq(&self, other: &SignedDurationStats) -> bool
fn eq(&self, other: &SignedDurationStats) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for SignedDurationStats
impl StructuralPartialEq for SignedDurationStats
Auto Trait Implementations§
impl Freeze for SignedDurationStats
impl RefUnwindSafe for SignedDurationStats
impl Send for SignedDurationStats
impl Sync for SignedDurationStats
impl Unpin for SignedDurationStats
impl UnsafeUnpin for SignedDurationStats
impl UnwindSafe for SignedDurationStats
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