pub type BoxItemStream<T> = Pin<Box<dyn Stream<Item = AppResult<T>> + Send + 'static>>;
Boxed stream of items emitted by a source.
pub struct BoxItemStream<T> { /* private fields */ }