pub struct PercentileSummary {
pub mean: f64,
pub p50: f64,
pub p90: f64,
pub p95: f64,
pub p99: f64,
}Fields§
§mean: f64§p50: f64§p90: f64§p95: f64§p99: f64Trait Implementations§
Source§impl Clone for PercentileSummary
impl Clone for PercentileSummary
Source§fn clone(&self) -> PercentileSummary
fn clone(&self) -> PercentileSummary
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 PercentileSummary
impl Debug for PercentileSummary
Source§impl<'de> Deserialize<'de> for PercentileSummary
impl<'de> Deserialize<'de> for PercentileSummary
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
Auto Trait Implementations§
impl Freeze for PercentileSummary
impl RefUnwindSafe for PercentileSummary
impl Send for PercentileSummary
impl Sync for PercentileSummary
impl Unpin for PercentileSummary
impl UnsafeUnpin for PercentileSummary
impl UnwindSafe for PercentileSummary
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