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