pub struct MatrixAccess { /* private fields */ }
Expand description
MatrixAccess is used to represent an element inside a matrix at the specified row and column indices.
Implementations§
Source§impl MatrixAccess
impl MatrixAccess
Sourcepub fn new(name: Identifier, row_idx: usize, col_idx: usize) -> Self
pub fn new(name: Identifier, row_idx: usize, col_idx: usize) -> Self
Creates a new MatrixAccess instance with the specified identifier name and indices.
Trait Implementations§
Source§impl Clone for MatrixAccess
impl Clone for MatrixAccess
Source§fn clone(&self) -> MatrixAccess
fn clone(&self) -> MatrixAccess
Returns a copy 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 moreSource§impl Debug for MatrixAccess
impl Debug for MatrixAccess
Source§impl Ord for MatrixAccess
impl Ord for MatrixAccess
Source§fn cmp(&self, other: &MatrixAccess) -> Ordering
fn cmp(&self, other: &MatrixAccess) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for MatrixAccess
impl PartialEq for MatrixAccess
Source§impl PartialOrd for MatrixAccess
impl PartialOrd for MatrixAccess
impl Eq for MatrixAccess
impl StructuralPartialEq for MatrixAccess
Auto Trait Implementations§
impl Freeze for MatrixAccess
impl RefUnwindSafe for MatrixAccess
impl Send for MatrixAccess
impl Sync for MatrixAccess
impl Unpin for MatrixAccess
impl UnwindSafe for MatrixAccess
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