Middleware

Type Alias Middleware 

Source
pub type Middleware = Arc<dyn Fn(Request<Body>, HandlerFunc) -> BoxResponseFuture + Send + Sync>;
Expand description

Middleware: (req, next) -> Response.

Aliased Typeยง

pub struct Middleware { /* private fields */ }