[][src]Struct dyn_iter::DynIter

pub struct DynIter<'iter, V> { /* fields omitted */ }

Iterator type that can wrap any kind of Iterator.

This struct is a wrapper around types that implements Iterator trait. Since we do not know which specific type of Iterator is used, we Box it as a trait-object.

This iterator yields any type which usually depends on references on the model. Therefore, the iterator must outlive the wrapped Iterator.

Implementations

impl<'iter, V> DynIter<'iter, V>[src]

pub fn new<I>(iter: I) -> Self where
    I: Iterator<Item = V> + 'iter, 
[src]

Instantiates an DynIter from any kind of Iterator.

Trait Implementations

impl<V, '_> Debug for DynIter<'_, V>[src]

impl<'iter, V> Iterator for DynIter<'iter, V>[src]

type Item = V

The type of the elements being iterated over.

Auto Trait Implementations

impl<'iter, V> !RefUnwindSafe for DynIter<'iter, V>

impl<'iter, V> !Send for DynIter<'iter, V>

impl<'iter, V> !Sync for DynIter<'iter, V>

impl<'iter, V> Unpin for DynIter<'iter, V>

impl<'iter, V> !UnwindSafe for DynIter<'iter, V>

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.