pub type Result<T> = Result<T, SchemaError>;
Expand description
Result type for schema operations
Aliased Type§
pub enum Result<T> {
Ok(T),
Err(SchemaError),
}
pub type Result<T> = Result<T, SchemaError>;
Result type for schema operations
pub enum Result<T> {
Ok(T),
Err(SchemaError),
}