#[non_exhaustive]pub struct InstancesReencryptRequest {
pub backup_reencryption_config: Option<BackupReencryptionConfig>,
/* private fields */
}
Expand description
Database Instance reencrypt request.
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.backup_reencryption_config: Option<BackupReencryptionConfig>
Configuration specific to backup re-encryption
Implementations§
Source§impl InstancesReencryptRequest
impl InstancesReencryptRequest
pub fn new() -> Self
Sourcepub fn set_backup_reencryption_config<T>(self, v: T) -> Selfwhere
T: Into<BackupReencryptionConfig>,
pub fn set_backup_reencryption_config<T>(self, v: T) -> Selfwhere
T: Into<BackupReencryptionConfig>,
Sets the value of backup_reencryption_config.
Sourcepub fn set_or_clear_backup_reencryption_config<T>(self, v: Option<T>) -> Selfwhere
T: Into<BackupReencryptionConfig>,
pub fn set_or_clear_backup_reencryption_config<T>(self, v: Option<T>) -> Selfwhere
T: Into<BackupReencryptionConfig>,
Sets or clears the value of backup_reencryption_config.
Trait Implementations§
Source§impl Clone for InstancesReencryptRequest
impl Clone for InstancesReencryptRequest
Source§fn clone(&self) -> InstancesReencryptRequest
fn clone(&self) -> InstancesReencryptRequest
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 InstancesReencryptRequest
impl Debug for InstancesReencryptRequest
Source§impl Default for InstancesReencryptRequest
impl Default for InstancesReencryptRequest
Source§fn default() -> InstancesReencryptRequest
fn default() -> InstancesReencryptRequest
Returns the “default value” for a type. Read more
Source§impl Message for InstancesReencryptRequest
impl Message for InstancesReencryptRequest
impl StructuralPartialEq for InstancesReencryptRequest
Auto Trait Implementations§
impl Freeze for InstancesReencryptRequest
impl RefUnwindSafe for InstancesReencryptRequest
impl Send for InstancesReencryptRequest
impl Sync for InstancesReencryptRequest
impl Unpin for InstancesReencryptRequest
impl UnwindSafe for InstancesReencryptRequest
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