#[non_exhaustive]pub enum AutomatedBackupConfig {
AutomatedBackupPolicy(Box<AutomatedBackupPolicy>),
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
AutomatedBackupPolicy(Box<AutomatedBackupPolicy>)
If specified, automated backups are enabled for this table. Otherwise, automated backups are disabled.
Trait Implementations§
Source§impl Clone for AutomatedBackupConfig
impl Clone for AutomatedBackupConfig
Source§fn clone(&self) -> AutomatedBackupConfig
fn clone(&self) -> AutomatedBackupConfig
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 AutomatedBackupConfig
impl Debug for AutomatedBackupConfig
Source§impl PartialEq for AutomatedBackupConfig
impl PartialEq for AutomatedBackupConfig
impl StructuralPartialEq for AutomatedBackupConfig
Auto Trait Implementations§
impl Freeze for AutomatedBackupConfig
impl RefUnwindSafe for AutomatedBackupConfig
impl Send for AutomatedBackupConfig
impl Sync for AutomatedBackupConfig
impl Unpin for AutomatedBackupConfig
impl UnwindSafe for AutomatedBackupConfig
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