pub struct MatrixStrideHole { /* private fields */ }Expand description
A size hole requiring the stride of a matrix, and whether the matrix is column or row major.
The hole is a (usize, bool) tuple, which
is the stride of the matrix, and whether the
matrix is row major. By default, the matrix is
considered column major.
Trait Implementations§
Source§impl Clone for MatrixStrideHole
impl Clone for MatrixStrideHole
Source§fn clone(&self) -> MatrixStrideHole
fn clone(&self) -> MatrixStrideHole
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 moreSource§impl Debug for MatrixStrideHole
impl Debug for MatrixStrideHole
Source§impl ResolveSize for MatrixStrideHole
impl ResolveSize for MatrixStrideHole
Auto Trait Implementations§
impl Freeze for MatrixStrideHole
impl RefUnwindSafe for MatrixStrideHole
impl Send for MatrixStrideHole
impl Sync for MatrixStrideHole
impl Unpin for MatrixStrideHole
impl UnwindSafe for MatrixStrideHole
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