pub type MiddlewareResult = Result<Request<Incoming>, Box<Response<Full<Bytes>>>>;Expand description
Outcome of a middleware decision: either the (possibly modified) request continues downstream, or a response is returned immediately.
Aliased Type§
pub enum MiddlewareResult {
Ok(Request<Incoming>),
Err(Box<Response<Full<Bytes>>>),
}