pub type BoxStream<'a, T> = Pin<Box<dyn Stream<Item = T> + Send + 'a>>;
Stream that is Send unless targeting WASM
Send
struct BoxStream<'a, T> {}