pub struct SetEncryptionKeyRequestBody {
pub current_encryption_key: Option<String>,
pub encryption_key: String,
pub encryption_key_identifier: Option<String>,
}
Expand description
This action sets the local encryption key for the storage subsystem.
Fields§
§current_encryption_key: Option<String>
The current local encryption key on the storage subsystem.
encryption_key: String
The local encryption key to set on the storage subsystem.
encryption_key_identifier: Option<String>
The local encryption key identifier used by the storage subsystem.
Trait Implementations§
Source§impl Clone for SetEncryptionKeyRequestBody
impl Clone for SetEncryptionKeyRequestBody
Source§fn clone(&self) -> SetEncryptionKeyRequestBody
fn clone(&self) -> SetEncryptionKeyRequestBody
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 SetEncryptionKeyRequestBody
impl Debug for SetEncryptionKeyRequestBody
Source§impl<'de> Deserialize<'de> for SetEncryptionKeyRequestBody
impl<'de> Deserialize<'de> for SetEncryptionKeyRequestBody
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 SetEncryptionKeyRequestBody
impl Metadata<'static> for SetEncryptionKeyRequestBody
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 SetEncryptionKeyRequestBody
impl RefUnwindSafe for SetEncryptionKeyRequestBody
impl Send for SetEncryptionKeyRequestBody
impl Sync for SetEncryptionKeyRequestBody
impl Unpin for SetEncryptionKeyRequestBody
impl UnwindSafe for SetEncryptionKeyRequestBody
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