pub struct StatsLinSolMatrix {
pub name: String,
pub nrow: usize,
pub ncol: usize,
pub nnz: usize,
pub complex: bool,
pub symmetric: String,
}Expand description
Holds information about the sparse matrix
Fields§
§name: String§nrow: usize§ncol: usize§nnz: usize§complex: bool§symmetric: StringTrait Implementations§
Source§impl Clone for StatsLinSolMatrix
impl Clone for StatsLinSolMatrix
Source§fn clone(&self) -> StatsLinSolMatrix
fn clone(&self) -> StatsLinSolMatrix
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 StatsLinSolMatrix
impl Debug for StatsLinSolMatrix
Source§impl<'de> Deserialize<'de> for StatsLinSolMatrix
impl<'de> Deserialize<'de> for StatsLinSolMatrix
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 StatsLinSolMatrix
impl RefUnwindSafe for StatsLinSolMatrix
impl Send for StatsLinSolMatrix
impl Sync for StatsLinSolMatrix
impl Unpin for StatsLinSolMatrix
impl UnsafeUnpin for StatsLinSolMatrix
impl UnwindSafe for StatsLinSolMatrix
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