pub type WebResult<T> = Result<T, WebError>;Expand description
A Result type for implementing functions. Allows you to use ? within your function body
to return a 500 with the error details.
Aliased Type§
pub enum WebResult<T> {
Ok(T),
Err(WebError),
}