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

BoxStream, but without the Send requirement.

Aliased Type§

struct LocalBoxStream<'a, T> { /* private fields */ }