pub struct PerformanceStats {
pub matvec_count: AtomicUsize,
pub bytes_processed: AtomicUsize,
}Expand description
Performance statistics for matrix operations.
Fields§
§matvec_count: AtomicUsize§bytes_processed: AtomicUsizeTrait Implementations§
Source§impl Clone for PerformanceStats
impl Clone for PerformanceStats
Source§impl Debug for PerformanceStats
impl Debug for PerformanceStats
Source§impl Default for PerformanceStats
impl Default for PerformanceStats
Source§fn default() -> PerformanceStats
fn default() -> PerformanceStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl !Freeze for PerformanceStats
impl RefUnwindSafe for PerformanceStats
impl Send for PerformanceStats
impl Sync for PerformanceStats
impl Unpin for PerformanceStats
impl UnwindSafe for PerformanceStats
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