pub type DoCanResult<R> = Result<R, DoCanError>;
pub enum DoCanResult<R> { Ok(R), Err(DoCanError), }
Contains the success value
Contains the error value