Struct dntk_matrix::multi_dim::MultiMatrix
source · [−]pub struct MultiMatrix<const N: usize, const M: usize, const L: usize, T>(pub [T; N * M * L]);
Expand description
Matrix [[N x M] x L]
Tuple Fields
0: [T; N * M * L]
Trait Implementations
sourceimpl<const N: usize, const M: usize, const L: usize, T> Add<MultiMatrix<N, M, L, T>> for MultiMatrix<N, M, L, T> where
T: AddAssign + Copy,
impl<const N: usize, const M: usize, const L: usize, T> Add<MultiMatrix<N, M, L, T>> for MultiMatrix<N, M, L, T> where
T: AddAssign + Copy,
sourceimpl<const N: usize, const M: usize, const L: usize, T: Clone> Clone for MultiMatrix<N, M, L, T>
impl<const N: usize, const M: usize, const L: usize, T: Clone> Clone for MultiMatrix<N, M, L, T>
sourcefn clone(&self) -> MultiMatrix<N, M, L, T>
fn clone(&self) -> MultiMatrix<N, M, L, T>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl<const N: usize, const M: usize, const L: usize, T: Debug> Debug for MultiMatrix<N, M, L, T>
impl<const N: usize, const M: usize, const L: usize, T: Debug> Debug for MultiMatrix<N, M, L, T>
sourceimpl<const N: usize, const M: usize, const L: usize, T> Display for MultiMatrix<N, M, L, T> where
T: Display + Copy + Zero + PartialOrd,
impl<const N: usize, const M: usize, const L: usize, T> Display for MultiMatrix<N, M, L, T> where
T: Display + Copy + Zero + PartialOrd,
sourceimpl<const N: usize, const M: usize, const L: usize, T: PartialEq> PartialEq<MultiMatrix<N, M, L, T>> for MultiMatrix<N, M, L, T>
impl<const N: usize, const M: usize, const L: usize, T: PartialEq> PartialEq<MultiMatrix<N, M, L, T>> for MultiMatrix<N, M, L, T>
sourcefn eq(&self, other: &MultiMatrix<N, M, L, T>) -> bool
fn eq(&self, other: &MultiMatrix<N, M, L, T>) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &MultiMatrix<N, M, L, T>) -> bool
fn ne(&self, other: &MultiMatrix<N, M, L, T>) -> bool
This method tests for !=
.
impl<const N: usize, const M: usize, const L: usize, T> StructuralPartialEq for MultiMatrix<N, M, L, T>
Auto Trait Implementations
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more