pub struct BenchmarkDistributionStats {
pub mean: f64,
pub p50: f64,
pub p95: f64,
pub min: f64,
pub max: f64,
pub stddev: f64,
}Fields§
§mean: f64§p50: f64§p95: f64§min: f64§max: f64§stddev: f64Trait Implementations§
Source§impl Clone for BenchmarkDistributionStats
impl Clone for BenchmarkDistributionStats
Source§fn clone(&self) -> BenchmarkDistributionStats
fn clone(&self) -> BenchmarkDistributionStats
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 Debug for BenchmarkDistributionStats
impl Debug for BenchmarkDistributionStats
Source§impl Default for BenchmarkDistributionStats
impl Default for BenchmarkDistributionStats
Source§fn default() -> BenchmarkDistributionStats
fn default() -> BenchmarkDistributionStats
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BenchmarkDistributionStats
impl<'de> Deserialize<'de> for BenchmarkDistributionStats
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 BenchmarkDistributionStats
impl PartialEq for BenchmarkDistributionStats
Source§fn eq(&self, other: &BenchmarkDistributionStats) -> bool
fn eq(&self, other: &BenchmarkDistributionStats) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BenchmarkDistributionStats
Auto Trait Implementations§
impl Freeze for BenchmarkDistributionStats
impl RefUnwindSafe for BenchmarkDistributionStats
impl Send for BenchmarkDistributionStats
impl Sync for BenchmarkDistributionStats
impl Unpin for BenchmarkDistributionStats
impl UnsafeUnpin for BenchmarkDistributionStats
impl UnwindSafe for BenchmarkDistributionStats
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