pub struct BenchmarkStats {
pub runs: u64,
pub total_ops: u64,
pub total_bytes: u64,
}Expand description
Running aggregate statistics across multiple benchmark runs.
Fields§
§runs: u64Number of benchmark runs completed
total_ops: u64Cumulative operation count across all runs
total_bytes: u64Cumulative bytes transferred across all runs
Implementations§
Source§impl BenchmarkStats
impl BenchmarkStats
Sourcepub fn record(&mut self, result: &BenchmarkResult)
pub fn record(&mut self, result: &BenchmarkResult)
Incorporate a completed BenchmarkResult into these stats.
Sourcepub fn avg_ops_per_run(&self) -> f64
pub fn avg_ops_per_run(&self) -> f64
Average operations per run (returns 0 when no runs have been recorded).
Sourcepub fn avg_bytes_per_run(&self) -> f64
pub fn avg_bytes_per_run(&self) -> f64
Average bytes per run.
Trait 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
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§
impl<T> Allocation for T
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more