pub type PccResult<T> = Result<T, PccError>;
The result of checking proof-carrying-code facts.
enum PccResult<T> { Ok(T), Err(PccError), }
Contains the success value
Contains the error value