#[non_exhaustive]pub enum VerificationError {
Show 14 variants
ReceiptFormatError,
ControlVerificationError {
control_id: Digest,
},
ImageVerificationError,
MerkleQueryOutOfRange {
idx: usize,
rows: usize,
},
InvalidProof,
JournalDigestMismatch,
ClaimDigestMismatch {
expected: Digest,
received: Digest,
},
UnexpectedExitCode,
InvalidHashSuite,
VerifierParametersMissing,
VerifierParametersMismatch {
expected: Digest,
received: Digest,
},
ProofSystemInfoMismatch {
expected: ProtocolInfo,
received: ProtocolInfo,
},
CircuitInfoMismatch {
expected: ProtocolInfo,
received: ProtocolInfo,
},
UnresolvedAssumption {
digest: Digest,
},
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
ReceiptFormatError
ControlVerificationError
ImageVerificationError
MerkleQueryOutOfRange
InvalidProof
JournalDigestMismatch
ClaimDigestMismatch
UnexpectedExitCode
InvalidHashSuite
VerifierParametersMissing
VerifierParametersMismatch
ProofSystemInfoMismatch
CircuitInfoMismatch
UnresolvedAssumption
Trait Implementations§
Source§impl Debug for VerificationError
impl Debug for VerificationError
Source§impl Display for VerificationError
impl Display for VerificationError
Source§impl PartialEq for VerificationError
impl PartialEq for VerificationError
impl StructuralPartialEq for VerificationError
Auto Trait Implementations§
impl Freeze for VerificationError
impl RefUnwindSafe for VerificationError
impl Send for VerificationError
impl Sync for VerificationError
impl Unpin for VerificationError
impl UnwindSafe for VerificationError
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more