[][src]Struct gluon_base::merge::MergeIter

pub struct MergeIter<'s, I, F, G, T, S> where
    S: ?Sized
{ pub state: &'s mut S, // some fields omitted }

Fields

state: &'s mut S

Trait Implementations

impl<I, F, G, U, S, '_> ExactSizeIterator for MergeIter<'_, I, F, G, U, S> where
    S: ?Sized,
    I: ExactSizeIterator,
    F: FnMut(&mut S, I::Item) -> Option<U>,
    G: FnMut(&mut S, I::Item) -> U, 
[src]

impl<'s, I, F, G, U, S> Iterator for MergeIter<'s, I, F, G, U, S> where
    S: ?Sized,
    I: Iterator,
    F: FnMut(&mut S, I::Item) -> Option<U>,
    G: FnMut(&mut S, I::Item) -> U, 
[src]

type Item = U

The type of the elements being iterated over.

Auto Trait Implementations

impl<'s, I, F, G, T, S: ?Sized> RefUnwindSafe for MergeIter<'s, I, F, G, T, S> where
    F: RefUnwindSafe,
    G: RefUnwindSafe,
    I: RefUnwindSafe,
    S: RefUnwindSafe,
    T: RefUnwindSafe

impl<'s, I, F, G, T, S: ?Sized> Send for MergeIter<'s, I, F, G, T, S> where
    F: Send,
    G: Send,
    I: Send,
    S: Send,
    T: Send

impl<'s, I, F, G, T, S: ?Sized> Sync for MergeIter<'s, I, F, G, T, S> where
    F: Sync,
    G: Sync,
    I: Sync,
    S: Sync,
    T: Sync

impl<'s, I, F, G, T, S: ?Sized> Unpin for MergeIter<'s, I, F, G, T, S> where
    F: Unpin,
    G: Unpin,
    I: Unpin,
    T: Unpin

impl<'s, I, F, G, T, S> !UnwindSafe for MergeIter<'s, I, F, G, T, S>

Blanket Implementations

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

impl<Id> AsId<Id> for Id where
    Id: ?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> Itertools for T where
    T: Iterator + ?Sized
[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.