pub enum MutationRiskLevel {
Low,
Medium,
High,
Critical,
}Expand description
Risk level for mutations
Variants§
Trait Implementations§
Source§impl Clone for MutationRiskLevel
impl Clone for MutationRiskLevel
Source§fn clone(&self) -> MutationRiskLevel
fn clone(&self) -> MutationRiskLevel
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 MutationRiskLevel
impl Debug for MutationRiskLevel
Source§impl<'de> Deserialize<'de> for MutationRiskLevel
impl<'de> Deserialize<'de> for MutationRiskLevel
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 MutationRiskLevel
impl PartialEq for MutationRiskLevel
Source§impl Serialize for MutationRiskLevel
impl Serialize for MutationRiskLevel
impl Eq for MutationRiskLevel
impl StructuralPartialEq for MutationRiskLevel
Auto Trait Implementations§
impl Freeze for MutationRiskLevel
impl RefUnwindSafe for MutationRiskLevel
impl Send for MutationRiskLevel
impl Sync for MutationRiskLevel
impl Unpin for MutationRiskLevel
impl UnsafeUnpin for MutationRiskLevel
impl UnwindSafe for MutationRiskLevel
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