Trait salvo::Catcher[][src]

pub trait Catcher: 'static + Send + Sync {
    fn catch(&self, req: &Request, res: &mut Response) -> bool;
}
Expand description

Catch error in current response.

Required methods

If the current catcher caught the error, it will returns true.

Implementors