Struct easy_ml::matrices::views::MatrixQuadrants
source · pub struct MatrixQuadrants<'source, T> {
pub top_left: MatrixView<T, MatrixPart<'source, T>>,
pub top_right: MatrixView<T, MatrixPart<'source, T>>,
pub bottom_left: MatrixView<T, MatrixPart<'source, T>>,
pub bottom_right: MatrixView<T, MatrixPart<'source, T>>,
}
Expand description
Four parts of a Matrix which can be mutated individually.
Fields§
§top_left: MatrixView<T, MatrixPart<'source, T>>
§top_right: MatrixView<T, MatrixPart<'source, T>>
§bottom_left: MatrixView<T, MatrixPart<'source, T>>
§bottom_right: MatrixView<T, MatrixPart<'source, T>>
Trait Implementations§
source§impl<'source, T: Debug> Debug for MatrixQuadrants<'source, T>
impl<'source, T: Debug> Debug for MatrixQuadrants<'source, T>
Auto Trait Implementations§
impl<'source, T> Freeze for MatrixQuadrants<'source, T>
impl<'source, T> RefUnwindSafe for MatrixQuadrants<'source, T>where
T: RefUnwindSafe,
impl<'source, T> Send for MatrixQuadrants<'source, T>where
T: Send,
impl<'source, T> Sync for MatrixQuadrants<'source, T>where
T: Sync,
impl<'source, T> Unpin for MatrixQuadrants<'source, T>where
T: Unpin,
impl<'source, T> !UnwindSafe for MatrixQuadrants<'source, T>
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