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