pub enum EncryptionTypes {
NativeDriveEncryption,
ControllerAssisted,
SoftwareAssisted,
UnsupportedValue,
}Variants§
NativeDriveEncryption
The volume is utilizing the native drive encryption capabilities of the drive hardware.
ControllerAssisted
The volume is being encrypted by the storage controller entity.
SoftwareAssisted
The volume is being encrypted by software running on the system or the operating system.
UnsupportedValue
Fallback value for values that are not supported by current version of Redfish schema.
Trait Implementations§
Source§impl Clone for EncryptionTypes
impl Clone for EncryptionTypes
Source§fn clone(&self) -> EncryptionTypes
fn clone(&self) -> EncryptionTypes
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 EncryptionTypes
impl Debug for EncryptionTypes
Source§impl<'de> Deserialize<'de> for EncryptionTypes
impl<'de> Deserialize<'de> for EncryptionTypes
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 EncryptionTypes
impl PartialEq for EncryptionTypes
Source§impl Serialize for EncryptionTypes
impl Serialize for EncryptionTypes
Source§impl ToSnakeCase for EncryptionTypes
impl ToSnakeCase for EncryptionTypes
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 EncryptionTypes
impl Eq for EncryptionTypes
impl StructuralPartialEq for EncryptionTypes
Auto Trait Implementations§
impl Freeze for EncryptionTypes
impl RefUnwindSafe for EncryptionTypes
impl Send for EncryptionTypes
impl Sync for EncryptionTypes
impl Unpin for EncryptionTypes
impl UnsafeUnpin for EncryptionTypes
impl UnwindSafe for EncryptionTypes
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