Skip to main content

ItemStream

Type Alias ItemStream 

Source
pub type ItemStream<T, D> = Pin<Box<dyn Stream<Item = Result<Item<T, D>, Error>> + Send>>;
Expand description

The boxed sequence a Subscription reads: items, then the end.

Aliased Typeยง

#[repr(transparent)]
pub struct ItemStream<T, D> { /* private fields */ }