pub struct TransposedMatrixView<'a, T, const M: usize, const N: usize> { /* private fields */ }Implementations§
Source§impl<'a, T: 'a + Clone, const M: usize, const N: usize> TransposedMatrixView<'a, T, M, N>
impl<'a, T: 'a + Clone, const M: usize, const N: usize> TransposedMatrixView<'a, T, M, N>
pub fn materialize(self) -> Matrix<T, M, N>
Trait Implementations§
Source§impl<'a, T, const M: usize, const N: usize> ConstIndex<VectorView<'a, T, M, N>, N> for TransposedMatrixView<'a, T, M, N>
impl<'a, T, const M: usize, const N: usize> ConstIndex<VectorView<'a, T, M, N>, N> for TransposedMatrixView<'a, T, M, N>
fn i(self, index: usize) -> VectorView<'a, T, M, N>
Source§impl<'a, T: Debug, const M: usize, const N: usize> Debug for TransposedMatrixView<'a, T, M, N>
impl<'a, T: Debug, const M: usize, const N: usize> Debug for TransposedMatrixView<'a, T, M, N>
Source§impl<'a, T, const M: usize, const N: usize> IntoIterator for TransposedMatrixView<'a, T, M, N>
impl<'a, T, const M: usize, const N: usize> IntoIterator for TransposedMatrixView<'a, T, M, N>
Source§type Item = VectorView<'a, T, M, N>
type Item = VectorView<'a, T, M, N>
The type of the elements being iterated over.
Source§type IntoIter = ConstIterator<<TransposedMatrixView<'a, T, M, N> as IntoIterator>::Item, TransposedMatrixView<'a, T, M, N>, N>
type IntoIter = ConstIterator<<TransposedMatrixView<'a, T, M, N> as IntoIterator>::Item, TransposedMatrixView<'a, T, M, N>, N>
Which kind of iterator are we turning this into?
impl<'a, T, const M: usize, const N: usize> Copy for TransposedMatrixView<'a, T, M, N>
Auto Trait Implementations§
impl<'a, T, const M: usize, const N: usize> Freeze for TransposedMatrixView<'a, T, M, N>
impl<'a, T, const M: usize, const N: usize> RefUnwindSafe for TransposedMatrixView<'a, T, M, N>where
T: RefUnwindSafe,
impl<'a, T, const M: usize, const N: usize> Send for TransposedMatrixView<'a, T, M, N>where
T: Sync,
impl<'a, T, const M: usize, const N: usize> Sync for TransposedMatrixView<'a, T, M, N>where
T: Sync,
impl<'a, T, const M: usize, const N: usize> Unpin for TransposedMatrixView<'a, T, M, N>
impl<'a, T, const M: usize, const N: usize> UnwindSafe for TransposedMatrixView<'a, T, M, N>where
T: RefUnwindSafe,
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