pub struct PercentilesView {
pub p01: f64,
pub p05: f64,
pub p10: f64,
pub p25: f64,
pub p50: f64,
pub p75: f64,
pub p90: f64,
pub p95: f64,
pub p99: f64,
}Expand description
Canonical DPS percentiles (p01 through p99) for distribution summaries.
Fields§
§p01: f64§p05: f64§p10: f64§p25: f64§p50: f64§p75: f64§p90: f64§p95: f64§p99: f64Trait Implementations§
Source§impl Clone for PercentilesView
impl Clone for PercentilesView
Source§fn clone(&self) -> PercentilesView
fn clone(&self) -> PercentilesView
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 PercentilesView
impl Debug for PercentilesView
Source§impl Serialize for PercentilesView
impl Serialize for PercentilesView
Source§impl Tsify for PercentilesView
impl Tsify for PercentilesView
const DECL: &'static str = "/**\n * Canonical DPS percentiles (p01 through p99) for distribution summaries.\n */\nexport interface PercentilesView {\n p01: number;\n p05: number;\n p10: number;\n p25: number;\n p50: number;\n p75: number;\n p90: number;\n p95: number;\n p99: number;\n}"
const SERIALIZATION_CONFIG: SerializationConfig
type JsType = JsType
fn into_js(&self) -> Result<Self::JsType, Error>where
Self: Serialize,
Auto Trait Implementations§
impl Freeze for PercentilesView
impl RefUnwindSafe for PercentilesView
impl Send for PercentilesView
impl Sync for PercentilesView
impl Unpin for PercentilesView
impl UnsafeUnpin for PercentilesView
impl UnwindSafe for PercentilesView
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