pub type SpecResult<T> = Result<T, SpecError>;
Result type used by the shared spec/parsing layer.
pub enum SpecResult<T> { Ok(T), Err(SpecError), }
Contains the success value
Contains the error value