pub struct Summary {
pub n: usize,
pub outliers_rejected: usize,
pub median_ms: f64,
pub ci95_lo_ms: f64,
pub ci95_hi_ms: f64,
pub min_ms: f64,
pub max_ms: f64,
pub mean_ms: f64,
}Fields§
§n: usizeSamples kept after outlier rejection.
outliers_rejected: usize§median_ms: f64§ci95_lo_ms: f64Distribution-free 95% CI on the median (order statistics).
ci95_hi_ms: f64§min_ms: f64§max_ms: f64§mean_ms: f64Trait Implementations§
Source§impl<'de> Deserialize<'de> for Summary
impl<'de> Deserialize<'de> for Summary
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
impl StructuralPartialEq for Summary
Auto Trait Implementations§
impl Freeze for Summary
impl RefUnwindSafe for Summary
impl Send for Summary
impl Sync for Summary
impl Unpin for Summary
impl UnsafeUnpin for Summary
impl UnwindSafe for Summary
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