pub struct OperationStats {
pub count: u64,
pub total_micros: u64,
pub min_micros: u64,
pub max_micros: u64,
pub mean_micros: u64,
}
Fields§
§count: u64
§total_micros: u64
§min_micros: u64
§max_micros: u64
§mean_micros: u64
Trait Implementations§
Source§impl Clone for OperationStats
impl Clone for OperationStats
Source§fn clone(&self) -> OperationStats
fn clone(&self) -> OperationStats
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 OperationStats
impl Debug for OperationStats
Source§impl Default for OperationStats
impl Default for OperationStats
Source§fn default() -> OperationStats
fn default() -> OperationStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for OperationStats
impl RefUnwindSafe for OperationStats
impl Send for OperationStats
impl Sync for OperationStats
impl Unpin for OperationStats
impl UnwindSafe for OperationStats
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