pub type SchemaResult<T> = Result<T, SchemaError>;
pub enum SchemaResult<T> { Ok(T), Err(SchemaError), }
Contains the success value
Contains the error value