pub type ItemStream<T, D> = Pin<Box<dyn Stream<Item = Result<Item<T, D>>> + Send>>;Expand description
The boxed sequence a Subscription reads: items, then the end.
Aliased Typeยง
#[repr(transparent)]pub struct ItemStream<T, D> { /* private fields */ }