Type Alias Result

Source
pub type Result<T> = Result<T, SchemaError>;
Expand description

Result type alias for schema operations

Convenience type alias that uses SchemaError as the error type. Used throughout the module for consistent error handling.

Aliased Type§

pub enum Result<T> {
    Ok(T),
    Err(SchemaError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(SchemaError)

Contains the error value