pub struct DurationMetrics {
pub min: u64,
pub median: u64,
pub max: u64,
pub p95: u64,
pub total: u64,
}Fields§
§min: u64§median: u64§max: u64§p95: u64§total: u64Trait Implementations§
Source§impl Debug for DurationMetrics
impl Debug for DurationMetrics
Source§impl<'de> Deserialize<'de> for DurationMetrics
impl<'de> Deserialize<'de> for DurationMetrics
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for DurationMetrics
impl RefUnwindSafe for DurationMetrics
impl Send for DurationMetrics
impl Sync for DurationMetrics
impl Unpin for DurationMetrics
impl UnwindSafe for DurationMetrics
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