Trait combine::stream::Stream

source ·
pub trait Stream: StreamOnce + Resetable + Positioned { }
Expand description

A stream of tokens which can be duplicated

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<I> Stream for Iwhere I: StreamOnce + Positioned + Resetable, I::Error: ParseError<I::Item, I::Range, I::Position>,