pub enum IntegritySeverity {
Error,
Advisory,
}Expand description
Severity of one definite integrity finding.
Variants§
Error
The finding identifies invalid maintained state.
Advisory
The finding is an operator advisory and does not invalidate a clean proof.
Trait Implementations§
Source§impl CandidType for IntegritySeverity
impl CandidType for IntegritySeverity
Source§impl Clone for IntegritySeverity
impl Clone for IntegritySeverity
Source§fn clone(&self) -> IntegritySeverity
fn clone(&self) -> IntegritySeverity
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 IntegritySeverity
Source§impl Debug for IntegritySeverity
impl Debug for IntegritySeverity
Source§impl<'de> Deserialize<'de> for IntegritySeverity
impl<'de> Deserialize<'de> for IntegritySeverity
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 IntegritySeverity
Source§impl PartialEq for IntegritySeverity
impl PartialEq for IntegritySeverity
impl StructuralPartialEq for IntegritySeverity
Auto Trait Implementations§
impl Freeze for IntegritySeverity
impl RefUnwindSafe for IntegritySeverity
impl Send for IntegritySeverity
impl Sync for IntegritySeverity
impl Unpin for IntegritySeverity
impl UnsafeUnpin for IntegritySeverity
impl UnwindSafe for IntegritySeverity
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