pub struct Violation {
pub prop: Proposition,
pub assumed: bool,
pub assuming_pass: PassName,
pub asserting_pass: PassName,
}Expand description
A proven fact contradicting an earlier assumption — the signal that the checkpoint+replay driver must discard the working copy and replay.
Fields§
§prop: PropositionThe contradicted proposition.
assumed: boolThe polarity that was assumed (the proven value is its negation).
assuming_pass: PassNameThe pass that made the wrong assumption.
asserting_pass: PassNameThe verification pass that proved the opposite.
Trait Implementations§
impl Copy for Violation
Source§impl<'de> Deserialize<'de> for Violation
impl<'de> Deserialize<'de> for Violation
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
impl Eq for Violation
impl StructuralPartialEq for Violation
Auto Trait Implementations§
impl Freeze for Violation
impl RefUnwindSafe for Violation
impl Send for Violation
impl Sync for Violation
impl Unpin for Violation
impl UnsafeUnpin for Violation
impl UnwindSafe for Violation
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