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