pub type IrResult<T> = Result<T, IrError>;
IR result type.
pub enum IrResult<T> { Ok(T), Err(IrError), }
Contains the success value
Contains the error value