pub enum SystemSecurity {
High,
Medium,
Low,
Anarchy,
Lawless,
Unknown(String),
}
Expand description
The level of security present in a system which controls how much security force is present in the system.
Variants§
Trait Implementations§
Source§impl Clone for SystemSecurity
impl Clone for SystemSecurity
Source§fn clone(&self) -> SystemSecurity
fn clone(&self) -> SystemSecurity
Returns a copy 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 SystemSecurity
impl Debug for SystemSecurity
Source§impl<'de> Deserialize<'de> for SystemSecurity
impl<'de> Deserialize<'de> for SystemSecurity
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 Display for SystemSecurity
impl Display for SystemSecurity
Source§impl PartialEq for SystemSecurity
impl PartialEq for SystemSecurity
Source§impl Serialize for SystemSecurity
impl Serialize for SystemSecurity
impl StructuralPartialEq for SystemSecurity
Auto Trait Implementations§
impl Freeze for SystemSecurity
impl RefUnwindSafe for SystemSecurity
impl Send for SystemSecurity
impl Sync for SystemSecurity
impl Unpin for SystemSecurity
impl UnwindSafe for SystemSecurity
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