pub struct MatrixData {
pub data: AlignedVec<f64>,
pub rows: u32,
pub cols: u32,
}Expand description
Flat, SIMD-aligned matrix storage (row-major order).
Fields§
§data: AlignedVec<f64>§rows: u32§cols: u32Implementations§
Source§impl MatrixData
impl MatrixData
Trait Implementations§
Source§impl Clone for MatrixData
impl Clone for MatrixData
Source§fn clone(&self) -> MatrixData
fn clone(&self) -> MatrixData
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 MatrixData
impl RefUnwindSafe for MatrixData
impl Send for MatrixData
impl Sync for MatrixData
impl Unpin for MatrixData
impl UnsafeUnpin for MatrixData
impl UnwindSafe for MatrixData
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