Skip to main content

Middleware

Trait Middleware 

Source
pub trait Middleware:
    Send
    + Sync
    + 'static {
    // Required method
    fn handle(&self, request: Request, next: Next) -> BoxFuture<Response>;
}

Required Methods§

Source

fn handle(&self, request: Request, next: Next) -> BoxFuture<Response>

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<F, Fut> Middleware for F
where F: Fn(Request, Next) -> Fut + Send + Sync + 'static, Fut: Future<Output = Response> + Send + 'static,