Expand description
The middleware pipeline.
A middleware receives the request and a Next; calling next.run(request)
continues the chain, and not calling it short-circuits — which is how auth
redirects to a login page without the handler ever running.
Structs§
- Next
- The rest of the pipeline, handed to each middleware in turn.