pub enum VerifyClaim {
Equivalent {
description: String,
},
Safe {
property: String,
bound: Option<u32>,
},
Unsafe {
counterexample: String,
},
}Expand description
What is being proven.
Variants§
Trait Implementations§
Source§impl Clone for VerifyClaim
impl Clone for VerifyClaim
Source§fn clone(&self) -> VerifyClaim
fn clone(&self) -> VerifyClaim
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 VerifyClaim
impl Debug for VerifyClaim
Source§impl<'de> Deserialize<'de> for VerifyClaim
impl<'de> Deserialize<'de> for VerifyClaim
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
Auto Trait Implementations§
impl Freeze for VerifyClaim
impl RefUnwindSafe for VerifyClaim
impl Send for VerifyClaim
impl Sync for VerifyClaim
impl Unpin for VerifyClaim
impl UnsafeUnpin for VerifyClaim
impl UnwindSafe for VerifyClaim
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