pub enum VerificationSeverity {
Warning,
Error,
}Expand description
Severity of a semantic verification finding.
Variants§
Warning
Reviewable condition that does not invalidate the captured proof.
Error
Semantic inconsistency that invalidates the captured proof.
Trait Implementations§
Source§impl Clone for VerificationSeverity
impl Clone for VerificationSeverity
Source§fn clone(&self) -> VerificationSeverity
fn clone(&self) -> VerificationSeverity
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 moreimpl Copy for VerificationSeverity
Source§impl Debug for VerificationSeverity
impl Debug for VerificationSeverity
Source§impl<'de> Deserialize<'de> for VerificationSeverity
impl<'de> Deserialize<'de> for VerificationSeverity
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 VerificationSeverity
Source§impl Ord for VerificationSeverity
impl Ord for VerificationSeverity
Source§fn cmp(&self, other: &VerificationSeverity) -> Ordering
fn cmp(&self, other: &VerificationSeverity) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for VerificationSeverity
impl PartialEq for VerificationSeverity
Source§impl PartialOrd for VerificationSeverity
impl PartialOrd for VerificationSeverity
Source§impl Serialize for VerificationSeverity
impl Serialize for VerificationSeverity
impl StructuralPartialEq for VerificationSeverity
Auto Trait Implementations§
impl Freeze for VerificationSeverity
impl RefUnwindSafe for VerificationSeverity
impl Send for VerificationSeverity
impl Sync for VerificationSeverity
impl Unpin for VerificationSeverity
impl UnsafeUnpin for VerificationSeverity
impl UnwindSafe for VerificationSeverity
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