futures_util::stream

Type Alias LocalBoxStream

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

BoxStream, but without the Send requirement.

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

Aliased Typeยง

struct LocalBoxStream<'a, T> {}