pub type BoxStream<'a, T> = Pin<Box<dyn Stream<Item = T> + Send + 'a>>;
Boxed Stream alias used by every stream() return type.
Stream
stream()
pub struct BoxStream<'a, T> { /* private fields */ }