pub type Result<'r> = Result<Response<'r>, Status>;
Type alias for the return type of a Catcher’s Handler::handle().
Catcher
Handler::handle()
enum Result<'r> { Ok(Response<'r>), Err(Status), }
Contains the success value
Contains the error value