pub struct Percentile {
pub p50: u64,
pub p95: u64,
pub p99: u64,
pub p999: u64,
}
Fields§
§p50: u64
§p95: u64
§p99: u64
§p999: u64
Trait Implementations§
Source§impl Clone for Percentile
impl Clone for Percentile
Source§fn clone(&self) -> Percentile
fn clone(&self) -> Percentile
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 Percentile
impl Debug for Percentile
impl Copy for Percentile
Auto Trait Implementations§
impl Freeze for Percentile
impl RefUnwindSafe for Percentile
impl Send for Percentile
impl Sync for Percentile
impl Unpin for Percentile
impl UnwindSafe for Percentile
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