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