type Result<T> = Result<T, IommuError>;
enum Result<T> { Ok(T), Err(IommuError), }
Contains the success value
Contains the error value