pub type BoxResourceStream<E> = Pin<Box<dyn Stream<Item = Result<Bytes, E>> + Send>>;
Expand description

Type alias for a pinned, boxed stream of HTTP responses with a custom error type.