pub struct FixedDatabaseBackupRequest {
pub subscription_id: Option<i32>,
pub database_id: Option<i32>,
pub adhoc_backup_path: Option<String>,
pub command_type: Option<String>,
pub extra: Value,
}
Expand description
Essentials database backup request message
Fields§
§subscription_id: Option<i32>
§database_id: Option<i32>
§adhoc_backup_path: Option<String>
Optional. Manually backs up data to this location, instead of the set ‘periodicBackupPath’ location.
command_type: Option<String>
§extra: Value
Additional fields from the API
Trait Implementations§
Source§impl Clone for FixedDatabaseBackupRequest
impl Clone for FixedDatabaseBackupRequest
Source§fn clone(&self) -> FixedDatabaseBackupRequest
fn clone(&self) -> FixedDatabaseBackupRequest
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 FixedDatabaseBackupRequest
impl Debug for FixedDatabaseBackupRequest
Source§impl<'de> Deserialize<'de> for FixedDatabaseBackupRequest
impl<'de> Deserialize<'de> for FixedDatabaseBackupRequest
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 FixedDatabaseBackupRequest
impl RefUnwindSafe for FixedDatabaseBackupRequest
impl Send for FixedDatabaseBackupRequest
impl Sync for FixedDatabaseBackupRequest
impl Unpin for FixedDatabaseBackupRequest
impl UnwindSafe for FixedDatabaseBackupRequest
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