pub type HandlerResult<T> = Result<T, ErrorResponder>;Expand description
Result type for Rocket handlers.
All pre-built handlers return this type, making it easy to use
? operator for error handling in custom code.
Aliased Type§
pub enum HandlerResult<T> {
Ok(T),
Err(ErrorResponder),
}