pub struct SensitivityMatrixMetadata {
pub rows: usize,
pub cols: usize,
pub nnz: usize,
pub dropped_entries: usize,
}Expand description
Shape and pruning metadata for one sensitivity matrix.
Fields§
§rows: usize§cols: usize§nnz: usize§dropped_entries: usizeTrait Implementations§
Source§impl Clone for SensitivityMatrixMetadata
impl Clone for SensitivityMatrixMetadata
Source§fn clone(&self) -> SensitivityMatrixMetadata
fn clone(&self) -> SensitivityMatrixMetadata
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 SensitivityMatrixMetadata
impl Debug for SensitivityMatrixMetadata
Source§impl<'de> Deserialize<'de> for SensitivityMatrixMetadata
impl<'de> Deserialize<'de> for SensitivityMatrixMetadata
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for SensitivityMatrixMetadata
impl RefUnwindSafe for SensitivityMatrixMetadata
impl Send for SensitivityMatrixMetadata
impl Sync for SensitivityMatrixMetadata
impl Unpin for SensitivityMatrixMetadata
impl UnsafeUnpin for SensitivityMatrixMetadata
impl UnwindSafe for SensitivityMatrixMetadata
Blanket Implementations§
impl<T> Allocation for T
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