Type Definition chumsky::stream::BoxStream[][src]

pub type BoxStream<'a, I, S> = Stream<'a, I, S, Box<dyn Iterator<Item = (I, S)> + 'a>>;
Expand description

A Stream that pulls tokens from a boxed Iterator.