pub type BoxStream<'a, T> = Pin<Box<dyn Stream<Item = T> + Send + 'a>>;
Stream that is Send unless targeting WASM
Send
#[repr(transparent)]pub struct BoxStream<'a, T> { /* private fields */ }