pub struct CpuDispatchStats {
pub simd_operations: u64,
pub scalar_fallbacks: u64,
pub dispatch_initialized: bool,
pub detected_features: CpuFeatures,
}
Expand description
CPU dispatch performance statistics.
Fields§
§simd_operations: u64
§scalar_fallbacks: u64
§dispatch_initialized: bool
§detected_features: CpuFeatures
Trait Implementations§
Source§impl Clone for CpuDispatchStats
impl Clone for CpuDispatchStats
Source§fn clone(&self) -> CpuDispatchStats
fn clone(&self) -> CpuDispatchStats
Returns a duplicate of the value. Read more
1.0.0 · 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 CpuDispatchStats
impl RefUnwindSafe for CpuDispatchStats
impl Send for CpuDispatchStats
impl Sync for CpuDispatchStats
impl Unpin for CpuDispatchStats
impl UnwindSafe for CpuDispatchStats
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