pub struct SparseStats {
pub zero_terms_skipped: u64,
pub memory_saved: u64,
pub fast_muls: u64,
}Expand description
Statistics for sparse operations.
Fields§
§zero_terms_skipped: u64Number of zero terms skipped.
memory_saved: u64Memory saved (estimated bytes).
fast_muls: u64Fast multiplications performed.
Trait Implementations§
Source§impl Clone for SparseStats
impl Clone for SparseStats
Source§fn clone(&self) -> SparseStats
fn clone(&self) -> SparseStats
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 SparseStats
impl Debug for SparseStats
Source§impl Default for SparseStats
impl Default for SparseStats
Source§fn default() -> SparseStats
fn default() -> SparseStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for SparseStats
impl RefUnwindSafe for SparseStats
impl Send for SparseStats
impl Sync for SparseStats
impl Unpin for SparseStats
impl UnsafeUnpin for SparseStats
impl UnwindSafe for SparseStats
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