pub type BoxStream<'a, T> = Pin<Box<dyn Stream<Item = T> + Send + 'a>>;
Type alias for a boxed pinned stream that is Send.
Send
pub struct BoxStream<'a, T> { /* private fields */ }