pub struct PointInTimeRecoverySpecification {
pub point_in_time_recovery_enabled: bool,
}
Expand description
Represents the settings used to enable point in time recovery.
Fields§
§point_in_time_recovery_enabled: bool
Indicates whether point in time recovery is enabled (true) or disabled (false) on the table.
Trait Implementations§
Source§impl Clone for PointInTimeRecoverySpecification
impl Clone for PointInTimeRecoverySpecification
Source§fn clone(&self) -> PointInTimeRecoverySpecification
fn clone(&self) -> PointInTimeRecoverySpecification
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 PointInTimeRecoverySpecification
impl Default for PointInTimeRecoverySpecification
Source§fn default() -> PointInTimeRecoverySpecification
fn default() -> PointInTimeRecoverySpecification
Returns the “default value” for a type. Read more
Source§impl PartialEq for PointInTimeRecoverySpecification
impl PartialEq for PointInTimeRecoverySpecification
Source§fn eq(&self, other: &PointInTimeRecoverySpecification) -> bool
fn eq(&self, other: &PointInTimeRecoverySpecification) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for PointInTimeRecoverySpecification
Auto Trait Implementations§
impl Freeze for PointInTimeRecoverySpecification
impl RefUnwindSafe for PointInTimeRecoverySpecification
impl Send for PointInTimeRecoverySpecification
impl Sync for PointInTimeRecoverySpecification
impl Unpin for PointInTimeRecoverySpecification
impl UnwindSafe for PointInTimeRecoverySpecification
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