pub struct MultiMatrix<const N: usize, const M: usize, const L: usize, T>(pub [T; { _ }])
where
[T; { _ }]:;Expand description
Matrix [[N x M] x L]
Tuple Fields§
§0: [T; { _ }]Trait Implementations§
Source§impl<const N: usize, const M: usize, const L: usize, T: Clone> Clone for MultiMatrix<N, M, L, T>where
[T; { _ }]:,
impl<const N: usize, const M: usize, const L: usize, T: Clone> Clone for MultiMatrix<N, M, L, T>where
[T; { _ }]:,
Source§fn clone(&self) -> MultiMatrix<N, M, L, T>
fn clone(&self) -> MultiMatrix<N, M, L, T>
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<const N: usize, const M: usize, const L: usize, T: Debug> Debug for MultiMatrix<N, M, L, T>where
[T; { _ }]:,
impl<const N: usize, const M: usize, const L: usize, T: Debug> Debug for MultiMatrix<N, M, L, T>where
[T; { _ }]:,
Source§impl<const N: usize, const M: usize, const L: usize, T: PartialEq> PartialEq for MultiMatrix<N, M, L, T>where
[T; { _ }]:,
impl<const N: usize, const M: usize, const L: usize, T: PartialEq> PartialEq for MultiMatrix<N, M, L, T>where
[T; { _ }]:,
impl<const N: usize, const M: usize, const L: usize, T> StructuralPartialEq for MultiMatrix<N, M, L, T>where
[T; { _ }]:,
Auto Trait Implementations§
impl<const N: usize, const M: usize, const L: usize, T> Freeze for MultiMatrix<N, M, L, T>where
T: Freeze,
impl<const N: usize, const M: usize, const L: usize, T> RefUnwindSafe for MultiMatrix<N, M, L, T>where
T: RefUnwindSafe,
impl<const N: usize, const M: usize, const L: usize, T> Send for MultiMatrix<N, M, L, T>where
T: Send,
impl<const N: usize, const M: usize, const L: usize, T> Sync for MultiMatrix<N, M, L, T>where
T: Sync,
impl<const N: usize, const M: usize, const L: usize, T> Unpin for MultiMatrix<N, M, L, T>where
T: Unpin,
impl<const N: usize, const M: usize, const L: usize, T> UnwindSafe for MultiMatrix<N, M, L, T>where
T: UnwindSafe,
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