pub type HyperResponseFut<T = HyperResponse, E = Error> = Pin<Box<dyn Future<Output = Result<T, E>> + Send + 'static>>;
Available on non-WebAssembly and crate feature
hyper
only.Expand description
Alias for pinned box future that results in HyperResponse
Aliased Typeยง
struct HyperResponseFut<T = HyperResponse, E = Error> {}