Struct granite::chain::IterMut[][src]

pub struct IterMut<'a, S: List + 'a, I: List<Element = S>>(_);

An mutable iterator over the storages of a [Chain].

Trait Implementations

impl<'a, S: List, I: List<Element = S>> Debug for IterMut<'a, S, I> where
    <I as IntoMutIterator<'a>>::IterMut: Debug
[src]

impl<'a, S: List + 'a, I: List<Element = S>> DoubleEndedIterator for IterMut<'a, S, I> where
    <I as IntoMutIterator<'a>>::IterMut: DoubleEndedIterator
[src]

impl<'a, S: List + 'a, I: List<Element = S>> ExactSizeIterator for IterMut<'a, S, I> where
    <I as IntoMutIterator<'a>>::IterMut: ExactSizeIterator
[src]

impl<'a, S: List + 'a, I: List<Element = S>> FusedIterator for IterMut<'a, S, I> where
    <I as IntoMutIterator<'a>>::IterMut: FusedIterator
[src]

impl<'a, S: List, I: List<Element = S>> Iterator for IterMut<'a, S, I>[src]

type Item = StorageProxyMut<'a, S>

The type of the elements being iterated over.

Auto Trait Implementations

impl<'a, S, I> RefUnwindSafe for IterMut<'a, S, I> where
    <I as IntoMutIterator<'a>>::IterMut: RefUnwindSafe

impl<'a, S, I> Send for IterMut<'a, S, I> where
    <I as IntoMutIterator<'a>>::IterMut: Send

impl<'a, S, I> Sync for IterMut<'a, S, I> where
    <I as IntoMutIterator<'a>>::IterMut: Sync

impl<'a, S, I> Unpin for IterMut<'a, S, I> where
    <I as IntoMutIterator<'a>>::IterMut: Unpin

impl<'a, S, I> UnwindSafe for IterMut<'a, S, I> where
    <I as IntoMutIterator<'a>>::IterMut: UnwindSafe

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> From<T> for T[src]

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

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<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.