[][src]Trait combine::Stream

pub trait Stream: StreamOnce + ResetStream + Positioned { }

A stream of tokens which can be duplicated

This is a trait over types which implement the StreamOnce, ResetStream and Positioned traits. If you need a custom Stream object then implement those traits and Stream is implemented automatically.

Implementors

impl<I> Stream for I where
    I: StreamOnce + Positioned + ResetStream,
    I::Error: ParseError<I::Item, I::Range, I::Position>, 
[src]

Loading content...