pub type BoxStream<T> = Pin<Box<dyn Stream<Item = T> + Send>>;
Boxed Send stream alias used for streaming results.
Send
pub struct BoxStream<T> { /* private fields */ }