pub enum ConfigurationLock {
Enabled,
Disabled,
Partial,
UnsupportedValue,
}Variants§
Enabled
In-band configuration requests are locked as specified by TargetConfigurationLockLevel.
This value shall indicate in-band configuration requests are locked as specified by
TargetConfigurationLockLevel.
Disabled
In-band configuration requests are not locked.
This value shall indicate in-band configuration requests are not locked.
Partial
Some in-band configuration requests are not locked while others are locked. This value is used for status reporting to indicate that the storage subsystem is partially locked and client action is recommended.
This value shall indicate some in-band configuration requests are not locked while others are locked.
UnsupportedValue
Fallback value for values that are not supported by current version of Redfish schema.
Trait Implementations§
Source§impl Clone for ConfigurationLock
impl Clone for ConfigurationLock
Source§fn clone(&self) -> ConfigurationLock
fn clone(&self) -> ConfigurationLock
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 ConfigurationLock
impl Debug for ConfigurationLock
Source§impl<'de> Deserialize<'de> for ConfigurationLock
impl<'de> Deserialize<'de> for ConfigurationLock
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 ConfigurationLock
impl PartialEq for ConfigurationLock
Source§impl Serialize for ConfigurationLock
impl Serialize for ConfigurationLock
Source§impl ToSnakeCase for ConfigurationLock
impl ToSnakeCase for ConfigurationLock
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 ConfigurationLock
impl Eq for ConfigurationLock
impl StructuralPartialEq for ConfigurationLock
Auto Trait Implementations§
impl Freeze for ConfigurationLock
impl RefUnwindSafe for ConfigurationLock
impl Send for ConfigurationLock
impl Sync for ConfigurationLock
impl Unpin for ConfigurationLock
impl UnsafeUnpin for ConfigurationLock
impl UnwindSafe for ConfigurationLock
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