Type Alias LocalBoxStream

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

BoxStream, but without the Send requirement.

This type is often created by the boxed_local method on StreamExt. See its documentation for more.