pub type BoxStream<T> = Pin<Box<dyn Stream<Item = Result<T, OxideError>> + Send>>;
Convenience alias for a pinned, owned, send-able stream of fallible items.
pub struct BoxStream<T> { /* private fields */ }