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