Type Alias futures_core::stream::LocalBoxStream
source · 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> {}