pub struct FMatrix<T: Any, const N: usize, const M: usize>(pub [[T; M]; N]);Expand description
Matrix value.
Tuple Fields§
§0: [[T; M]; N]Trait Implementations§
impl<T: Any, const N: usize, const M: usize> Matrix for FMatrix<T, N, M>
Auto Trait Implementations§
impl<T, const N: usize, const M: usize> Freeze for FMatrix<T, N, M>where
T: Freeze,
impl<T, const N: usize, const M: usize> RefUnwindSafe for FMatrix<T, N, M>where
T: RefUnwindSafe,
impl<T, const N: usize, const M: usize> Send for FMatrix<T, N, M>where
T: Send,
impl<T, const N: usize, const M: usize> Sync for FMatrix<T, N, M>where
T: Sync,
impl<T, const N: usize, const M: usize> Unpin for FMatrix<T, N, M>where
T: Unpin,
impl<T, const N: usize, const M: usize> UnwindSafe for FMatrix<T, N, M>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