Struct parser_combinators::primitives::IteratorStream [] [src]

pub struct IteratorStream<I>(_)
where
    I: Iterator + Clone
;

Wrapper around iterators which allows them to be treated as a stream. Returned by from_iter.

Trait Implementations

impl<I: Clone> Clone for IteratorStream<I> where
    I: Iterator + Clone
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<I: Debug> Debug for IteratorStream<I> where
    I: Iterator + Clone
[src]

Formats the value using the given formatter.

impl<I: Iterator + Clone> Stream for IteratorStream<I> where
    I::Item: Positioner
[src]

Takes a stream and removes its first item, yielding the item and the rest of the elements Returns Err when no more elements could be retrieved Read more