pub enum RiskProfile {
Strict,
Standard,
Permissive,
}Expand description
Risk profile names for per-workload security (directive G8).
Variants§
Trait Implementations§
Source§impl Clone for RiskProfile
impl Clone for RiskProfile
Source§fn clone(&self) -> RiskProfile
fn clone(&self) -> RiskProfile
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 RiskProfile
Source§impl Debug for RiskProfile
impl Debug for RiskProfile
Source§impl<'de> Deserialize<'de> for RiskProfile
impl<'de> Deserialize<'de> for RiskProfile
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 RiskProfile
Source§impl PartialEq for RiskProfile
impl PartialEq for RiskProfile
Source§fn eq(&self, other: &RiskProfile) -> bool
fn eq(&self, other: &RiskProfile) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for RiskProfile
impl Serialize for RiskProfile
impl StructuralPartialEq for RiskProfile
Auto Trait Implementations§
impl Freeze for RiskProfile
impl RefUnwindSafe for RiskProfile
impl Send for RiskProfile
impl Sync for RiskProfile
impl Unpin for RiskProfile
impl UnsafeUnpin for RiskProfile
impl UnwindSafe for RiskProfile
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