Type Definition futures_util::stream::LocalBoxStream

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

BoxStream, but without the Send requirement.