pub type Result<'r> = Result<Response<'r>, Status>;
Type alias for the Result of a Responder::respond call.
Result
Responder::respond
enum Result<'r> { Ok(Response<'r>), Err(Status), }
Contains the success value
Contains the error value