pub struct Percentiles<Unit> {
pub p10: f64,
pub p50: f64,
pub p90: f64,
/* private fields */
}Fields§
§p10: f64§p50: f64§p90: f64Trait Implementations§
Source§impl<Unit: Clone> Clone for Percentiles<Unit>
impl<Unit: Clone> Clone for Percentiles<Unit>
Source§fn clone(&self) -> Percentiles<Unit>
fn clone(&self) -> Percentiles<Unit>
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<Unit: Debug> Debug for Percentiles<Unit>
impl<Unit: Debug> Debug for Percentiles<Unit>
Source§impl<'de, Unit> Deserialize<'de> for Percentiles<Unit>
impl<'de, Unit> Deserialize<'de> for Percentiles<Unit>
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl<Unit: PartialEq> PartialEq for Percentiles<Unit>
impl<Unit: PartialEq> PartialEq for Percentiles<Unit>
Source§fn eq(&self, other: &Percentiles<Unit>) -> bool
fn eq(&self, other: &Percentiles<Unit>) -> bool
Tests for
self and other values to be equal, and is used by ==.impl<Unit> StructuralPartialEq for Percentiles<Unit>
Auto Trait Implementations§
impl<Unit> Freeze for Percentiles<Unit>
impl<Unit> RefUnwindSafe for Percentiles<Unit>where
Unit: RefUnwindSafe,
impl<Unit> Send for Percentiles<Unit>where
Unit: Send,
impl<Unit> Sync for Percentiles<Unit>where
Unit: Sync,
impl<Unit> Unpin for Percentiles<Unit>where
Unit: Unpin,
impl<Unit> UnsafeUnpin for Percentiles<Unit>
impl<Unit> UnwindSafe for Percentiles<Unit>where
Unit: UnwindSafe,
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