pub struct Matrix<T, const R: usize, const C: usize> { /* private fields */ }
Expand description
R
×C
の行列
Implementations§
Trait Implementations§
Source§impl<T, const R: usize, const C: usize, const C2: usize> Mul<Matrix<T, C, C2>> for Matrix<T, R, C>
impl<T, const R: usize, const C: usize, const C2: usize> Mul<Matrix<T, C, C2>> for Matrix<T, R, C>
impl<T: Eq, const R: usize, const C: usize> Eq for Matrix<T, R, C>
impl<T, const R: usize, const C: usize> StructuralPartialEq for Matrix<T, R, C>
Auto Trait Implementations§
impl<T, const R: usize, const C: usize> Freeze for Matrix<T, R, C>where
T: Freeze,
impl<T, const R: usize, const C: usize> RefUnwindSafe for Matrix<T, R, C>where
T: RefUnwindSafe,
impl<T, const R: usize, const C: usize> Send for Matrix<T, R, C>where
T: Send,
impl<T, const R: usize, const C: usize> Sync for Matrix<T, R, C>where
T: Sync,
impl<T, const R: usize, const C: usize> Unpin for Matrix<T, R, C>where
T: Unpin,
impl<T, const R: usize, const C: usize> UnwindSafe for Matrix<T, R, C>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