pub struct DenseMatrixOwned { /* private fields */ }Implementations§
Source§impl DenseMatrixOwned
impl DenseMatrixOwned
pub fn new( values: Vec<f32>, rows: usize, columns: usize, order: DenseOrder, ) -> Result<Self, SparseError>
pub fn as_ref(&self) -> DenseMatrix<'_>
Trait Implementations§
Source§impl Clone for DenseMatrixOwned
impl Clone for DenseMatrixOwned
Source§fn clone(&self) -> DenseMatrixOwned
fn clone(&self) -> DenseMatrixOwned
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 DenseMatrixOwned
impl Debug for DenseMatrixOwned
Source§impl PartialEq for DenseMatrixOwned
impl PartialEq for DenseMatrixOwned
impl StructuralPartialEq for DenseMatrixOwned
Auto Trait Implementations§
impl Freeze for DenseMatrixOwned
impl RefUnwindSafe for DenseMatrixOwned
impl Send for DenseMatrixOwned
impl Sync for DenseMatrixOwned
impl Unpin for DenseMatrixOwned
impl UnsafeUnpin for DenseMatrixOwned
impl UnwindSafe for DenseMatrixOwned
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