Type Definition futures_util::stream::LocalBoxStream [−][src]
type LocalBoxStream<'a, T> = Pin<Box<dyn Stream<Item = T> + 'a, Global>>;
BoxStream
, but without the Send
requirement.
type LocalBoxStream<'a, T> = Pin<Box<dyn Stream<Item = T> + 'a, Global>>;
BoxStream
, but without the Send
requirement.