pub struct PercentileStats {
pub p50: u64,
pub p90: u64,
pub p95: u64,
pub p99: u64,
pub min: u64,
pub max: u64,
}Expand description
Percentile statistics for latency analysis
Fields§
§p50: u64Median (50th percentile) in microseconds
p90: u6490th percentile in microseconds
p95: u6495th percentile in microseconds
p99: u6499th percentile in microseconds
min: u64Minimum value in microseconds
max: u64Maximum value in microseconds
Trait Implementations§
Source§impl Clone for PercentileStats
impl Clone for PercentileStats
Source§fn clone(&self) -> PercentileStats
fn clone(&self) -> PercentileStats
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 PercentileStats
impl Debug for PercentileStats
Source§impl Default for PercentileStats
impl Default for PercentileStats
Source§fn default() -> PercentileStats
fn default() -> PercentileStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for PercentileStats
impl RefUnwindSafe for PercentileStats
impl Send for PercentileStats
impl Sync for PercentileStats
impl Unpin for PercentileStats
impl UnwindSafe for PercentileStats
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more