#[non_exhaustive]pub struct EncryptionDetails {
pub algorithm: Option<String>,
pub algorithm_id: Option<i64>,
pub key_length: Option<i64>,
pub key_uid: Option<String>,
pub type: Option<String>,
}Expand description
Encryption Details
Details about the encryption methodology utilized.
[] Category: | Name: encryption_details
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.algorithm: Option<String>Encryption Algorithm
The encryption algorithm used, normalized to the caption of ’algorithm_id
optional
algorithm_id: Option<i64>Encryption Algorithm ID
The encryption algorithm used.
recommended
key_length: Option<i64>Encryption Key Length
The length of the encryption key used.
optional
key_uid: Option<String>Key UID
The unique identifier of the key used for encryption. For example, AWS KMS Key ARN.
optional
type: Option<String>Encryption Type
The type of the encryption used.
recommended
Trait Implementations§
Source§impl Clone for EncryptionDetails
impl Clone for EncryptionDetails
Source§fn clone(&self) -> EncryptionDetails
fn clone(&self) -> EncryptionDetails
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 EncryptionDetails
impl Debug for EncryptionDetails
Source§impl Default for EncryptionDetails
impl Default for EncryptionDetails
Source§fn default() -> EncryptionDetails
fn default() -> EncryptionDetails
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EncryptionDetailswhere
EncryptionDetails: Default,
impl<'de> Deserialize<'de> for EncryptionDetailswhere
EncryptionDetails: Default,
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 EncryptionDetails
impl PartialEq for EncryptionDetails
Source§impl Serialize for EncryptionDetails
impl Serialize for EncryptionDetails
impl StructuralPartialEq for EncryptionDetails
Auto Trait Implementations§
impl Freeze for EncryptionDetails
impl RefUnwindSafe for EncryptionDetails
impl Send for EncryptionDetails
impl Sync for EncryptionDetails
impl Unpin for EncryptionDetails
impl UnwindSafe for EncryptionDetails
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