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