pub struct BackupFile {
pub create_time: Option<DateTime<Utc>>,
pub file_name: Option<String>,
pub size_bytes: Option<i64>,
}Expand description
Backup is consisted of multiple backup files.
This type is not used in any activity, and only used as part of another schema.
Fields§
§create_time: Option<DateTime<Utc>>Output only. The time when the backup file was created.
file_name: Option<String>Output only. e.g: .rdb
size_bytes: Option<i64>Output only. Size of the backup file in bytes.
Trait Implementations§
Source§impl Clone for BackupFile
impl Clone for BackupFile
Source§fn clone(&self) -> BackupFile
fn clone(&self) -> BackupFile
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 BackupFile
impl Debug for BackupFile
Source§impl Default for BackupFile
impl Default for BackupFile
Source§fn default() -> BackupFile
fn default() -> BackupFile
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BackupFile
impl<'de> Deserialize<'de> for BackupFile
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 BackupFile
impl Serialize for BackupFile
impl Part for BackupFile
Auto Trait Implementations§
impl Freeze for BackupFile
impl RefUnwindSafe for BackupFile
impl Send for BackupFile
impl Sync for BackupFile
impl Unpin for BackupFile
impl UnwindSafe for BackupFile
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