pub type CtfeResult = Result<CtfeValue, CtfeError>;
Convenient result type for CTFE operations.
pub enum CtfeResult { Ok(CtfeValue), Err(CtfeError), }
Contains the success value
Contains the error value