pub enum VerificationFailure {
StateHashMismatch {
expected: String,
actual: String,
},
ToolChecksumMismatch {
expected: String,
actual: String,
},
UnmatchedInterrupt {
seq: u64,
value: Value,
},
UnmatchedResume {
seq: u64,
},
RunNotFound,
}Expand description
Verification failure reasons.
Variants§
StateHashMismatch
State hash mismatch.
ToolChecksumMismatch
Tool checksum mismatch.
UnmatchedInterrupt
Interrupt without a matching Resumed.
UnmatchedResume
Resumed without a matching Interrupt.
RunNotFound
Run not found in event store.
Trait Implementations§
Source§impl Clone for VerificationFailure
impl Clone for VerificationFailure
Source§fn clone(&self) -> VerificationFailure
fn clone(&self) -> VerificationFailure
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for VerificationFailure
impl Debug for VerificationFailure
Source§impl<'de> Deserialize<'de> for VerificationFailure
impl<'de> Deserialize<'de> for VerificationFailure
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for VerificationFailure
impl PartialEq for VerificationFailure
Source§impl Serialize for VerificationFailure
impl Serialize for VerificationFailure
impl Eq for VerificationFailure
impl StructuralPartialEq for VerificationFailure
Auto Trait Implementations§
impl Freeze for VerificationFailure
impl RefUnwindSafe for VerificationFailure
impl Send for VerificationFailure
impl Sync for VerificationFailure
impl Unpin for VerificationFailure
impl UnsafeUnpin for VerificationFailure
impl UnwindSafe for VerificationFailure
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