pub type PinnedStream<T> = Pin<Box<dyn Stream<Item = T> + Send + Sync>>;
Type alias for a boxed Stream.
Stream
struct PinnedStream<T> {}