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