pub type Result<T> = Result<T, NirError>;
Result type used across the crate.
pub enum Result<T> { Ok(T), Err(NirError), }
Contains the success value
Contains the error value