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