pub trait Skipper:
Send
+ Sync
+ 'static {
// Required method
fn skipped(&self, req: &mut Request, depot: &Depot) -> bool;
}Expand description
Skipper is used to check if the request should be skipped.
Skipper is used in many middlewares.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".