pub type ByteStream = Pin<Box<dyn Stream<Item = Result<Bytes, HttpError>> + Send>>;
A pinned, boxed async stream of byte chunks.
pub struct ByteStream { /* private fields */ }