pub enum ConfigLockOptions {
Unlocked,
Locked,
LockdownUnsupported,
CommandUnsupported,
UnsupportedValue,
}Variants§
Unlocked
The command is supported, able to be locked, and is currently unlocked.
Locked
The command is supported and is currently locked.
LockdownUnsupported
The command is supported but is not able to be locked.
CommandUnsupported
The command is not supported, therefore lockdown does not apply.
UnsupportedValue
Fallback value for values that are not supported by current version of Redfish schema.
Trait Implementations§
Source§impl Clone for ConfigLockOptions
impl Clone for ConfigLockOptions
Source§fn clone(&self) -> ConfigLockOptions
fn clone(&self) -> ConfigLockOptions
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 ConfigLockOptions
impl Debug for ConfigLockOptions
Source§impl<'de> Deserialize<'de> for ConfigLockOptions
impl<'de> Deserialize<'de> for ConfigLockOptions
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 ConfigLockOptions
impl PartialEq for ConfigLockOptions
Source§impl Serialize for ConfigLockOptions
impl Serialize for ConfigLockOptions
Source§impl ToSnakeCase for ConfigLockOptions
impl ToSnakeCase for ConfigLockOptions
Source§fn to_snake_case(&self) -> &'static str
fn to_snake_case(&self) -> &'static str
Convert this enum variant to a
snake_case stringimpl Copy for ConfigLockOptions
impl Eq for ConfigLockOptions
impl StructuralPartialEq for ConfigLockOptions
Auto Trait Implementations§
impl Freeze for ConfigLockOptions
impl RefUnwindSafe for ConfigLockOptions
impl Send for ConfigLockOptions
impl Sync for ConfigLockOptions
impl Unpin for ConfigLockOptions
impl UnsafeUnpin for ConfigLockOptions
impl UnwindSafe for ConfigLockOptions
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