pub type LocalBoxStream<'a, T> = Pin<Box<dyn Stream<Item = T> + 'a, Global>>;
Expand description

BoxStream, but without the Send requirement.