pub type IonSchemaResult<T> = Result<T, IonSchemaError>;
Expand description

A unified Result type representing the outcome of method calls that may fail.

Aliased Type§

enum IonSchemaResult<T> {
    Ok(T),
    Err(IonSchemaError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(IonSchemaError)

Contains the error value