pub struct ContinuousBackupsDescription {
pub continuous_backups_status: String,
pub point_in_time_recovery_description: Option<PointInTimeRecoveryDescription>,
}
Expand description
Represents the continuous backups and point in time recovery settings on the table.
Fields§
§continuous_backups_status: String
ContinuousBackupsStatus
can be one of the following states: ENABLED, DISABLED
point_in_time_recovery_description: Option<PointInTimeRecoveryDescription>
The description of the point in time recovery settings applied to the table.
Trait Implementations§
Source§impl Clone for ContinuousBackupsDescription
impl Clone for ContinuousBackupsDescription
Source§fn clone(&self) -> ContinuousBackupsDescription
fn clone(&self) -> ContinuousBackupsDescription
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 ContinuousBackupsDescription
impl Debug for ContinuousBackupsDescription
Source§impl Default for ContinuousBackupsDescription
impl Default for ContinuousBackupsDescription
Source§fn default() -> ContinuousBackupsDescription
fn default() -> ContinuousBackupsDescription
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ContinuousBackupsDescription
impl<'de> Deserialize<'de> for ContinuousBackupsDescription
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ContinuousBackupsDescription
impl PartialEq for ContinuousBackupsDescription
Source§fn eq(&self, other: &ContinuousBackupsDescription) -> bool
fn eq(&self, other: &ContinuousBackupsDescription) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ContinuousBackupsDescription
Auto Trait Implementations§
impl Freeze for ContinuousBackupsDescription
impl RefUnwindSafe for ContinuousBackupsDescription
impl Send for ContinuousBackupsDescription
impl Sync for ContinuousBackupsDescription
impl Unpin for ContinuousBackupsDescription
impl UnwindSafe for ContinuousBackupsDescription
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