pub struct UpdateFieldLevelEncryptionConfigRequest {
pub field_level_encryption_config: FieldLevelEncryptionConfig,
pub id: String,
pub if_match: Option<String>,
}
Fields§
§field_level_encryption_config: FieldLevelEncryptionConfig
Request to update a field-level encryption configuration.
id: String
The ID of the configuration you want to update.
if_match: Option<String>
The value of the ETag
header that you received when retrieving the configuration identity to update. For example: E2QWRUHAPOMQZL
.
Trait Implementations§
Source§impl Clone for UpdateFieldLevelEncryptionConfigRequest
impl Clone for UpdateFieldLevelEncryptionConfigRequest
Source§fn clone(&self) -> UpdateFieldLevelEncryptionConfigRequest
fn clone(&self) -> UpdateFieldLevelEncryptionConfigRequest
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 UpdateFieldLevelEncryptionConfigRequest
impl Default for UpdateFieldLevelEncryptionConfigRequest
Source§fn default() -> UpdateFieldLevelEncryptionConfigRequest
fn default() -> UpdateFieldLevelEncryptionConfigRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for UpdateFieldLevelEncryptionConfigRequest
impl PartialEq for UpdateFieldLevelEncryptionConfigRequest
Source§fn eq(&self, other: &UpdateFieldLevelEncryptionConfigRequest) -> bool
fn eq(&self, other: &UpdateFieldLevelEncryptionConfigRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for UpdateFieldLevelEncryptionConfigRequest
Auto Trait Implementations§
impl Freeze for UpdateFieldLevelEncryptionConfigRequest
impl RefUnwindSafe for UpdateFieldLevelEncryptionConfigRequest
impl Send for UpdateFieldLevelEncryptionConfigRequest
impl Sync for UpdateFieldLevelEncryptionConfigRequest
impl Unpin for UpdateFieldLevelEncryptionConfigRequest
impl UnwindSafe for UpdateFieldLevelEncryptionConfigRequest
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