Type Definition 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.
pub type LocalBoxStream<'a, T> = Pin<Box<dyn Stream<Item = T> + 'a>>;BoxStream, but without the Send requirement.