Skip to main content

BoxedStream

Type Alias BoxedStream 

Source
pub type BoxedStream<'a, T> = Stream<Box<dyn Iterator<Item = T> + 'a>>;
Expand description

A stream containing a boxed iterator. See Stream::boxed.

Aliased Typeยง

pub struct BoxedStream<'a, T> { /* private fields */ }