pub struct FieldBenchResult {
pub field_name: String,
pub bits: usize,
pub u32s_per_element: usize,
pub init: OpResult,
pub add: OpResult,
pub mul: OpResult,
pub inv: OpResult,
}Fields§
§field_name: String§bits: usize§u32s_per_element: usize§init: OpResult§add: OpResult§mul: OpResult§inv: OpResultTrait Implementations§
Source§impl Clone for FieldBenchResult
impl Clone for FieldBenchResult
Source§fn clone(&self) -> FieldBenchResult
fn clone(&self) -> FieldBenchResult
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 moreAuto Trait Implementations§
impl Freeze for FieldBenchResult
impl RefUnwindSafe for FieldBenchResult
impl Send for FieldBenchResult
impl Sync for FieldBenchResult
impl Unpin for FieldBenchResult
impl UnsafeUnpin for FieldBenchResult
impl UnwindSafe for FieldBenchResult
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