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),
}