pub struct Percentiles {
pub p50: f64,
pub p95: f64,
pub max: f64,
}Fields§
§p50: f64§p95: f64§max: 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 (const: unstable) · 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 PartialEq for Percentiles
impl PartialEq for Percentiles
Source§fn eq(&self, other: &Percentiles) -> bool
fn eq(&self, other: &Percentiles) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for Percentiles
impl StructuralPartialEq 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 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