pub type Result<T> = Result<T, SpecError>;
Result type alias for spec-core operations
pub enum Result<T> { Ok(T), Err(SpecError), }
Contains the success value
Contains the error value