pub struct FieldLevelEncryptionProfileSummary {
pub comment: Option<String>,
pub encryption_entities: EncryptionEntities,
pub id: String,
pub last_modified_time: String,
pub name: String,
}
Expand description
The field-level encryption profile summary.
Fields§
§comment: Option<String>
An optional comment for the field-level encryption profile summary.
encryption_entities: EncryptionEntities
A complex data type of encryption entities for the field-level encryption profile that include the public key ID, provider, and field patterns for specifying which fields to encrypt with this key.
id: String
ID for the field-level encryption profile summary.
last_modified_time: String
The time when the the field-level encryption profile summary was last updated.
name: String
Name for the field-level encryption profile summary.
Trait Implementations§
Source§impl Clone for FieldLevelEncryptionProfileSummary
impl Clone for FieldLevelEncryptionProfileSummary
Source§fn clone(&self) -> FieldLevelEncryptionProfileSummary
fn clone(&self) -> FieldLevelEncryptionProfileSummary
Returns a copy 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 Default for FieldLevelEncryptionProfileSummary
impl Default for FieldLevelEncryptionProfileSummary
Source§fn default() -> FieldLevelEncryptionProfileSummary
fn default() -> FieldLevelEncryptionProfileSummary
Returns the “default value” for a type. Read more
Source§impl PartialEq for FieldLevelEncryptionProfileSummary
impl PartialEq for FieldLevelEncryptionProfileSummary
Source§fn eq(&self, other: &FieldLevelEncryptionProfileSummary) -> bool
fn eq(&self, other: &FieldLevelEncryptionProfileSummary) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for FieldLevelEncryptionProfileSummary
Auto Trait Implementations§
impl Freeze for FieldLevelEncryptionProfileSummary
impl RefUnwindSafe for FieldLevelEncryptionProfileSummary
impl Send for FieldLevelEncryptionProfileSummary
impl Sync for FieldLevelEncryptionProfileSummary
impl Unpin for FieldLevelEncryptionProfileSummary
impl UnwindSafe for FieldLevelEncryptionProfileSummary
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