pub struct MatBenchResult {
pub n: usize,
pub mflops: Option<f64>,
}Expand description
Intermediate output from a benchmark closure.
Fields§
§n: usizeProblem size.
mflops: Option<f64>Optional MFLOP estimate.
Trait Implementations§
Source§impl Clone for MatBenchResult
impl Clone for MatBenchResult
Source§fn clone(&self) -> MatBenchResult
fn clone(&self) -> MatBenchResult
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 MatBenchResult
impl Debug for MatBenchResult
Source§impl Default for MatBenchResult
impl Default for MatBenchResult
Source§fn default() -> MatBenchResult
fn default() -> MatBenchResult
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for MatBenchResult
impl RefUnwindSafe for MatBenchResult
impl Send for MatBenchResult
impl Sync for MatBenchResult
impl Unpin for MatBenchResult
impl UnsafeUnpin for MatBenchResult
impl UnwindSafe for MatBenchResult
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