pub fn boxed_stream<T, S>(stream: S) -> Pin<Box<dyn Stream<Item = T> + Send>>where S: Stream<Item = T> + Send + 'static,
Boxes a stream.
Send