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