pub type BoxResourceFuture<E> = Pin<Box<dyn Future<Output = Result<Response<Bytes>, E>>>>;
Expand description

Type alias for a pinned, boxed future with a fallible HTTP response as output, with a custom error type.