pub type BoxStream<'a, T> = Pin<Box<dyn Stream<Item = T> + Send + 'a>>;
A boxed stream for async iteration.
pub struct BoxStream<'a, T> { /* private fields */ }