Type Alias LocalBoxStream

type LocalBoxStream = 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.