pub struct Percentiles {
pub count: usize,
pub min: f64,
pub p25: f64,
pub p50: f64,
pub p75: f64,
pub p95: f64,
pub p99: f64,
pub p99_9: f64,
pub p99_99: f64,
pub p99_999: f64,
pub max: f64,
pub sum: f64,
}Fields§
§count: usize§min: f64§p25: f64§p50: f64§p75: f64§p95: f64§p99: f64§p99_9: f64§p99_99: f64§p99_999: f64§max: f64§sum: f64Trait 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
impl Copy for Percentiles
Auto Trait Implementations§
impl Freeze for Percentiles
impl RefUnwindSafe for Percentiles
impl Send for Percentiles
impl Sync for Percentiles
impl Unpin 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