pub type RestResult<T> = Result<T, RestError>;
Result type used by REST helpers.
pub enum RestResult<T> { Ok(T), Err(RestError), }
Contains the success value
Contains the error value