pub trait FallbackHandler: 'static + Clone {
// Required method
fn execute(&self, req: &HttpRequest) -> HttpResponse;
}
Expand description
Fallback handlers will be called when no matched file could be found.
Required Methods§
fn execute(&self, req: &HttpRequest) -> HttpResponse
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.