pub trait Middleware:
Send
+ Sync
+ 'static {
// Required method
fn handle(
&self,
request: Request<Body>,
next: Next<Route>,
) -> Pin<Box<dyn Future<Output = Response> + Send>>;
}Expand description
Middleware trait (NestJS / Axum style).
Required Methods§
fn handle( &self, request: Request<Body>, next: Next<Route>, ) -> Pin<Box<dyn Future<Output = Response> + Send>>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".