pub enum EncryptionMode {
Disabled,
UseExternalKey,
UseLocalKey,
}
Variants§
Disabled
Encryption is disabled on the storage subsystem.
UseExternalKey
The storage subsystem uses one or more external keys for encryption.
UseLocalKey
The storage subsystem uses a local key for encryption.
Trait Implementations§
Source§impl Clone for EncryptionMode
impl Clone for EncryptionMode
Source§fn clone(&self) -> EncryptionMode
fn clone(&self) -> EncryptionMode
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for EncryptionMode
impl Debug for EncryptionMode
Source§impl Default for EncryptionMode
impl Default for EncryptionMode
Source§fn default() -> EncryptionMode
fn default() -> EncryptionMode
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EncryptionMode
impl<'de> Deserialize<'de> for EncryptionMode
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 Metadata<'static> for EncryptionMode
impl Metadata<'static> for EncryptionMode
Source§const JSON_SCHEMA: &'static str = "Storage.v1_15_0.json"
const JSON_SCHEMA: &'static str = "Storage.v1_15_0.json"
Name of the json-schema file that describes the entity that implements this trait. Should
be only the file name, so that it can be resolved relative to the URL of the redfish
service, or the public Redfish schema index.
Auto Trait Implementations§
impl Freeze for EncryptionMode
impl RefUnwindSafe for EncryptionMode
impl Send for EncryptionMode
impl Sync for EncryptionMode
impl Unpin for EncryptionMode
impl UnwindSafe for EncryptionMode
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