pub type IonResult<T> = Result<T, IonError>;
A unified Result type representing the outcome of method calls that may fail.
enum IonResult<T> { Ok(T), Err(IonError), }
Contains the success value
Contains the error value