1.0.0[][src]Struct core::option::IterMut

pub struct IterMut<'a, A: 'a> { /* fields omitted */ }

An iterator over a mutable reference to the Some variant of an Option.

The iterator yields one value if the Option is a Some, otherwise none.

This struct is created by the Option::iter_mut function.

Trait Implementations

impl<'a, A> Iterator for IterMut<'a, A>[src]

type Item = &'a mut A

The type of the elements being iterated over.

impl<'a, A> DoubleEndedIterator for IterMut<'a, A>[src]

impl<'_, A> ExactSizeIterator for IterMut<'_, A>[src]

impl<'_, A> FusedIterator for IterMut<'_, A>1.26.0[src]

impl<'_, A> TrustedLen for IterMut<'_, A>[src]

impl<'a, A: Debug + 'a> Debug for IterMut<'a, A>[src]

Auto Trait Implementations

impl<'a, A> Send for IterMut<'a, A> where
    A: Send

impl<'a, A> Sync for IterMut<'a, A> where
    A: Sync

impl<'a, A> Unpin for IterMut<'a, A>

Blanket Implementations

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

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

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<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> Borrow<T> for T where
    T: ?Sized
[src]

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

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