pub struct BenchmarkResult {
pub elapsed: Duration,
pub iterations: u32,
pub errors: u32,
pub speed: u32,
}Expand description
Benchmark results for a simple benchmark or a stage
Fields§
§elapsed: Duration§iterations: u32§errors: u32§speed: u32Auto Trait Implementations§
impl Freeze for BenchmarkResult
impl RefUnwindSafe for BenchmarkResult
impl Send for BenchmarkResult
impl Sync for BenchmarkResult
impl Unpin for BenchmarkResult
impl UnwindSafe for BenchmarkResult
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