pub type BoxedExactSizeStream<'a, T> = Stream<Box<dyn ExactSizeIterator<Item = T> + 'a>>;Expand description
A stream containing a boxed exact-sized iterator. See Stream::exact_size_boxed.
Aliased Typeยง
pub struct BoxedExactSizeStream<'a, T> { /* private fields */ }