pub enum RiskSeverity {
High,
Medium,
Low,
}Variants§
Trait Implementations§
Source§impl Clone for RiskSeverity
impl Clone for RiskSeverity
Source§fn clone(&self) -> RiskSeverity
fn clone(&self) -> RiskSeverity
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 RiskSeverity
impl Debug for RiskSeverity
Source§impl<'de> Deserialize<'de> for RiskSeverity
impl<'de> Deserialize<'de> for RiskSeverity
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 RiskSeverity
impl RefUnwindSafe for RiskSeverity
impl Send for RiskSeverity
impl Sync for RiskSeverity
impl Unpin for RiskSeverity
impl UnsafeUnpin for RiskSeverity
impl UnwindSafe for RiskSeverity
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