pub struct IncrementalBackupSpec { /* private fields */ }Expand description
The specification for incremental backup chains. An incremental backup stores the delta of changes between a previous backup and the database contents at a given version time. An incremental backup chain consists of a full backup and zero or more successive incremental backups. The first backup created for an incremental backup chain is always a full backup.
This type is not used in any activity, and only used as part of another schema.
Trait Implementations§
Source§impl Clone for IncrementalBackupSpec
impl Clone for IncrementalBackupSpec
Source§fn clone(&self) -> IncrementalBackupSpec
fn clone(&self) -> IncrementalBackupSpec
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 IncrementalBackupSpec
impl Debug for IncrementalBackupSpec
Source§impl Default for IncrementalBackupSpec
impl Default for IncrementalBackupSpec
Source§fn default() -> IncrementalBackupSpec
fn default() -> IncrementalBackupSpec
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for IncrementalBackupSpec
impl<'de> Deserialize<'de> for IncrementalBackupSpec
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 Serialize for IncrementalBackupSpec
impl Serialize for IncrementalBackupSpec
impl Part for IncrementalBackupSpec
Auto Trait Implementations§
impl Freeze for IncrementalBackupSpec
impl RefUnwindSafe for IncrementalBackupSpec
impl Send for IncrementalBackupSpec
impl Sync for IncrementalBackupSpec
impl Unpin for IncrementalBackupSpec
impl UnwindSafe for IncrementalBackupSpec
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