pub struct DatabaseBackupStatus {
pub enabled: Option<bool>,
pub status: Option<String>,
pub interval: Option<String>,
pub destination: Option<String>,
}Expand description
Database backup status and configuration
Fields§
§enabled: Option<bool>Whether backup is enabled
status: Option<String>Current backup status
interval: Option<String>Backup interval (e.g., “every-24-hours”)
destination: Option<String>Backup destination path
Trait Implementations§
Source§impl Clone for DatabaseBackupStatus
impl Clone for DatabaseBackupStatus
Source§fn clone(&self) -> DatabaseBackupStatus
fn clone(&self) -> DatabaseBackupStatus
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 DatabaseBackupStatus
impl Debug for DatabaseBackupStatus
Source§impl<'de> Deserialize<'de> for DatabaseBackupStatus
impl<'de> Deserialize<'de> for DatabaseBackupStatus
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 DatabaseBackupStatus
impl RefUnwindSafe for DatabaseBackupStatus
impl Send for DatabaseBackupStatus
impl Sync for DatabaseBackupStatus
impl Unpin for DatabaseBackupStatus
impl UnwindSafe for DatabaseBackupStatus
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