Struct streaming_iterator::RepeatWith[][src]

pub struct RepeatWith<T, F> { /* fields omitted */ }

A simple iterator that endlessly returns items from a function call.

Trait Implementations

impl<T: Clone, F: Clone> Clone for RepeatWith<T, F>[src]

impl<T: Debug, F: Debug> Debug for RepeatWith<T, F>[src]

impl<T, F: FnMut() -> T> StreamingIterator for RepeatWith<T, F>[src]

type Item = T

The type of the elements being iterated over.

impl<T, F: FnMut() -> T> StreamingIteratorMut for RepeatWith<T, F>[src]

Auto Trait Implementations

impl<T, F> Send for RepeatWith<T, F> where
    F: Send,
    T: Send

impl<T, F> Sync for RepeatWith<T, F> where
    F: Sync,
    T: Sync

impl<T, F> Unpin for RepeatWith<T, F> where
    F: Unpin,
    T: 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.