pub type BoxedFuture = ResponseFuture;Expand description
A pinned, boxed, Send future returning an HTTP response, or an immediately resolved response.
Aliased Type§
pub enum BoxedFuture {
Ready(Option<Response<Body>>),
Boxed(Pin<Box<dyn Future<Output = Response<Body>> + Send>>),
}