Struct streaming_iterator::ConvertMut[][src]

pub struct ConvertMut<'a, I, T: ?Sized> where
    I: Iterator<Item = &'a mut T>,
    T: 'a, 
{ /* fields omitted */ }

A streaming iterator which yields elements from an iterator of mutable references.

Trait Implementations

impl<'a, I: Debug, T: Debug + ?Sized> Debug for ConvertMut<'a, I, T> where
    I: Iterator<Item = &'a mut T>,
    T: 'a, 
[src]

impl<'a, I, T: ?Sized> DoubleEndedStreamingIterator for ConvertMut<'a, I, T> where
    I: DoubleEndedIterator<Item = &'a mut T>, 
[src]

impl<'a, I, T: ?Sized> DoubleEndedStreamingIteratorMut for ConvertMut<'a, I, T> where
    I: DoubleEndedIterator<Item = &'a mut T>, 
[src]

impl<'a, I, T: ?Sized> StreamingIterator for ConvertMut<'a, I, T> where
    I: Iterator<Item = &'a mut T>, 
[src]

type Item = T

The type of the elements being iterated over.

impl<'a, I, T: ?Sized> StreamingIteratorMut for ConvertMut<'a, I, T> where
    I: Iterator<Item = &'a mut T>, 
[src]

Auto Trait Implementations

impl<'a, I, T: ?Sized> Send for ConvertMut<'a, I, T> where
    I: Send,
    T: Send

impl<'a, I, T: ?Sized> Sync for ConvertMut<'a, I, T> where
    I: Sync,
    T: Sync

impl<'a, I, T: ?Sized> Unpin for ConvertMut<'a, I, T> where
    I: Unpin

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