[][src]Struct iterpipes::IterPipe

pub struct IterPipe<P> where
    P: Pipe,
    P::InputItem: Default
{ /* fields omitted */ }

An iterator that yields values by creating a default value and running it through a pipe.

The input value for the pipe obviously must implement Default and the output item of the pipe must be an Option<T>.

Implementations

impl<P> IterPipe<P> where
    P: Pipe,
    P::InputItem: Default
[src]

pub fn new(pipe: P) -> Self[src]

Create a new iterator with that pipe.

Trait Implementations

impl<O, P> Iterator for IterPipe<P> where
    P: Pipe<OutputItem = Option<O>>,
    P::InputItem: Default
[src]

type Item = O

The type of the elements being iterated over.

Auto Trait Implementations

impl<P> RefUnwindSafe for IterPipe<P> where
    P: RefUnwindSafe

impl<P> Send for IterPipe<P> where
    P: Send

impl<P> Sync for IterPipe<P> where
    P: Sync

impl<P> Unpin for IterPipe<P> where
    P: Unpin

impl<P> UnwindSafe for IterPipe<P> where
    P: UnwindSafe

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.