pub type WebResult<T> = Result<T, WebError>;
Result type alias for WebError operations
pub enum WebResult<T> { Ok(T), Err(WebError), }
Contains the success value
Contains the error value