pub(crate) struct Latency {
pub p50: u64,
pub p90: u64,
pub p99: u64,
pub max: u64,
pub mean: u64,
pub count: u64,
}Expand description
Percentiles over one sample set.
Fields§
§p50: u64§p90: u64§p99: u64§max: u64§mean: u64§count: u64Trait Implementations§
Auto Trait Implementations§
impl Freeze for Latency
impl RefUnwindSafe for Latency
impl Send for Latency
impl Sync for Latency
impl Unpin for Latency
impl UnwindSafe for Latency
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