pub struct Percentiles {
pub p1: f64,
pub p5: f64,
pub p10: f64,
pub p25: f64,
pub p50: f64,
pub p75: f64,
pub p90: f64,
pub p95: f64,
pub p99: f64,
}Expand description
Percentile values for distributions
Fields§
§p1: f641st percentile
p5: f645th percentile
p10: f6410th percentile
p25: f6425th percentile (Q1)
p50: f6450th percentile (median)
p75: f6475th percentile (Q3)
p90: f6490th percentile
p95: f6495th percentile
p99: f6499th percentile
Implementations§
Source§impl Percentiles
impl Percentiles
Trait Implementations§
Source§impl Clone for Percentiles
impl Clone for Percentiles
Source§fn clone(&self) -> Percentiles
fn clone(&self) -> Percentiles
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 Percentiles
impl Debug for Percentiles
Source§impl Default for Percentiles
impl Default for Percentiles
Source§fn default() -> Percentiles
fn default() -> Percentiles
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for Percentiles
impl RefUnwindSafe for Percentiles
impl Send for Percentiles
impl Sync for Percentiles
impl Unpin for Percentiles
impl UnsafeUnpin for Percentiles
impl UnwindSafe for Percentiles
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