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