[][src]Type Definition futures_core::stream::LocalBoxStream

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

BoxStream, but without the Send requirement.