pub type BoxedStream<'a, T> = Stream<Box<dyn Iterator<Item = T> + 'a>>;
A stream containing a boxed iterator. See Stream::boxed.
Stream::boxed
pub struct BoxedStream<'a, T> { /* private fields */ }