Type Alias futures::prelude::stream::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> {}