Struct lnkit::prelude::base::iter::RowIterMut[][src]

pub struct RowIterMut<'a, T, R, C, S> where
    C: Dim,
    T: Scalar,
    S: StorageMut<T, R, C>,
    R: Dim
{ /* fields omitted */ }

An iterator through the mutable rows of a matrix.

Trait Implementations

impl<'a, T, R, C, S> ExactSizeIterator for RowIterMut<'a, T, R, C, S> where
    C: Dim,
    T: Scalar,
    S: 'a + StorageMut<T, R, C>,
    R: Dim
[src]

impl<'a, T, R, C, S> Iterator for RowIterMut<'a, T, R, C, S> where
    C: Dim,
    T: Scalar,
    S: 'a + StorageMut<T, R, C>,
    R: Dim
[src]

type Item = Matrix<T, Const<1_usize>, C, SliceStorageMut<'a, T, Const<1_usize>, C, <S as Storage<T, R, C>>::RStride, <S as Storage<T, R, C>>::CStride>>

The type of the elements being iterated over.

Auto Trait Implementations

impl<'a, T, R, C, S> RefUnwindSafe for RowIterMut<'a, T, R, C, S> where
    C: RefUnwindSafe,
    R: RefUnwindSafe,
    S: RefUnwindSafe,
    T: RefUnwindSafe

impl<'a, T, R, C, S> !Send for RowIterMut<'a, T, R, C, S>

impl<'a, T, R, C, S> !Sync for RowIterMut<'a, T, R, C, S>

impl<'a, T, R, C, S> Unpin for RowIterMut<'a, T, R, C, S>

impl<'a, T, R, C, S> !UnwindSafe for RowIterMut<'a, T, R, C, S>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T, U> Cast<U> for T where
    U: FromCast<T>, 

impl<T> Downcast for T where
    T: Any

impl<T> From<T> for T[src]

impl<T> FromBits<T> for T

impl<T> FromCast<T> for T

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> IntoBits<U> for T where
    U: FromBits<T>, 

impl<I> IntoIterator for I where
    I: Iterator
[src]

type Item = <I as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = I

Which kind of iterator are we turning this into?

impl<I> IteratorRandom for I where
    I: Iterator
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,