pub struct BenchmarkComputations {
pub mean: Duration,
pub median: Duration,
pub variance: Duration,
pub min: Duration,
pub max: Duration,
}Expand description
Computed values from benchmark durations.
Fields§
§mean: DurationMean of all the durations.
median: DurationMedian of all the durations.
variance: DurationVariance of all the durations.
min: DurationMinimum duration amongst all durations.
max: DurationMaximum duration amongst all durations.
Implementations§
Trait Implementations§
Source§impl Clone for BenchmarkComputations
impl Clone for BenchmarkComputations
Source§impl Debug for BenchmarkComputations
impl Debug for BenchmarkComputations
Auto Trait Implementations§
impl Freeze for BenchmarkComputations
impl RefUnwindSafe for BenchmarkComputations
impl Send for BenchmarkComputations
impl Sync for BenchmarkComputations
impl Unpin for BenchmarkComputations
impl UnsafeUnpin for BenchmarkComputations
impl UnwindSafe for BenchmarkComputations
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