pub struct BackupConfig {
pub backup_directory: PathBuf,
pub wal_archive_directory: PathBuf,
pub retention_days: u32,
pub enable_encryption: bool,
pub encryption_key_path: Option<PathBuf>,
pub backup_schedule: String,
pub enable_replication: bool,
pub replication_targets: Vec<ReplicationTarget>,
pub rto_minutes: u32,
pub rpo_minutes: u32,
pub enable_verification: bool,
pub verification_schedule: String,
}
Fields§
§backup_directory: PathBuf
Directory where backups are stored
wal_archive_directory: PathBuf
WAL archive directory
retention_days: u32
Backup retention policy in days
enable_encryption: bool
Enable encryption for backups
encryption_key_path: Option<PathBuf>
Encryption key path
backup_schedule: String
Backup schedule (cron expression)
enable_replication: bool
Enable cross-region backup replication
replication_targets: Vec<ReplicationTarget>
Replication targets
rto_minutes: u32
Recovery time objective in minutes
rpo_minutes: u32
Recovery point objective in minutes
enable_verification: bool
Enable backup verification
verification_schedule: String
Verification schedule (cron expression)
Trait Implementations§
Source§impl Clone for BackupConfig
impl Clone for BackupConfig
Source§fn clone(&self) -> BackupConfig
fn clone(&self) -> BackupConfig
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 BackupConfig
impl Debug for BackupConfig
Source§impl Default for BackupConfig
impl Default for BackupConfig
Source§impl<'de> Deserialize<'de> for BackupConfig
impl<'de> Deserialize<'de> for BackupConfig
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
Auto Trait Implementations§
impl Freeze for BackupConfig
impl RefUnwindSafe for BackupConfig
impl Send for BackupConfig
impl Sync for BackupConfig
impl Unpin for BackupConfig
impl UnwindSafe for BackupConfig
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more