pub struct PercentileStats {
pub p50: f64,
pub p75: f64,
pub p90: f64,
pub p99: f64,
}Expand description
Latency or throughput percentile statistics for a public endpoint.
Fields§
§p50: f6450th percentile.
p75: f6475th percentile.
p90: f6490th percentile.
p99: f6499th percentile.
Trait Implementations§
Source§impl Clone for PercentileStats
impl Clone for PercentileStats
Source§fn clone(&self) -> PercentileStats
fn clone(&self) -> PercentileStats
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 moreimpl Copy for PercentileStats
Source§impl Debug for PercentileStats
impl Debug for PercentileStats
Source§impl Default for PercentileStats
impl Default for PercentileStats
Source§fn default() -> PercentileStats
fn default() -> PercentileStats
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PercentileStats
impl<'de> Deserialize<'de> for PercentileStats
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 PartialEq for PercentileStats
impl PartialEq for PercentileStats
Source§impl Serialize for PercentileStats
impl Serialize for PercentileStats
impl StructuralPartialEq for PercentileStats
Auto Trait Implementations§
impl Freeze for PercentileStats
impl RefUnwindSafe for PercentileStats
impl Send for PercentileStats
impl Sync for PercentileStats
impl Unpin for PercentileStats
impl UnsafeUnpin for PercentileStats
impl UnwindSafe for PercentileStats
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