pub type HttpResult<T> = Result<T, ErrorCode>;
pub enum HttpResult<T> { Ok(T), Err(Error<ErrorCode>), }
Contains the success value
Contains the error value