pub struct FieldLevelEncryptionSummary {
pub comment: Option<String>,
pub content_type_profile_config: Option<ContentTypeProfileConfig>,
pub id: String,
pub last_modified_time: String,
pub query_arg_profile_config: Option<QueryArgProfileConfig>,
}
Expand description
A summary of a field-level encryption item.
Fields§
§comment: Option<String>
An optional comment about the field-level encryption item.
content_type_profile_config: Option<ContentTypeProfileConfig>
A summary of a content type-profile mapping.
id: String
The unique ID of a field-level encryption item.
last_modified_time: String
The last time that the summary of field-level encryption items was modified.
query_arg_profile_config: Option<QueryArgProfileConfig>
A summary of a query argument-profile mapping.
Trait Implementations§
Source§impl Clone for FieldLevelEncryptionSummary
impl Clone for FieldLevelEncryptionSummary
Source§fn clone(&self) -> FieldLevelEncryptionSummary
fn clone(&self) -> FieldLevelEncryptionSummary
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 Debug for FieldLevelEncryptionSummary
impl Debug for FieldLevelEncryptionSummary
Source§impl Default for FieldLevelEncryptionSummary
impl Default for FieldLevelEncryptionSummary
Source§fn default() -> FieldLevelEncryptionSummary
fn default() -> FieldLevelEncryptionSummary
Returns the “default value” for a type. Read more
impl StructuralPartialEq for FieldLevelEncryptionSummary
Auto Trait Implementations§
impl Freeze for FieldLevelEncryptionSummary
impl RefUnwindSafe for FieldLevelEncryptionSummary
impl Send for FieldLevelEncryptionSummary
impl Sync for FieldLevelEncryptionSummary
impl Unpin for FieldLevelEncryptionSummary
impl UnwindSafe for FieldLevelEncryptionSummary
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