Trait FallbackHandler

Source
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§

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.

Implementors§