pub struct SqlBackupFileInfo {
pub file_name: Option<String>,
pub status: Option<String>,
pub total_size: Option<i64>,
pub data_read: Option<i64>,
pub data_written: Option<i64>,
pub copy_throughput: Option<f64>,
pub copy_duration: Option<i32>,
pub family_sequence_number: Option<i32>,
}
Expand description
Information of backup file
Fields§
§file_name: Option<String>
File name.
status: Option<String>
Status of the file. (Initial, Uploading, Uploaded, Restoring, Restored or Skipped)
total_size: Option<i64>
File size in bytes
data_read: Option<i64>
Bytes read
data_written: Option<i64>
Bytes written
copy_throughput: Option<f64>
Copy throughput in KBps
copy_duration: Option<i32>
Copy Duration in seconds
family_sequence_number: Option<i32>
Media family sequence number
Implementations§
Trait Implementations§
source§impl Clone for SqlBackupFileInfo
impl Clone for SqlBackupFileInfo
source§fn clone(&self) -> SqlBackupFileInfo
fn clone(&self) -> SqlBackupFileInfo
Returns a copy 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 SqlBackupFileInfo
impl Debug for SqlBackupFileInfo
source§impl Default for SqlBackupFileInfo
impl Default for SqlBackupFileInfo
source§fn default() -> SqlBackupFileInfo
fn default() -> SqlBackupFileInfo
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for SqlBackupFileInfo
impl<'de> Deserialize<'de> for SqlBackupFileInfo
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 PartialEq<SqlBackupFileInfo> for SqlBackupFileInfo
impl PartialEq<SqlBackupFileInfo> for SqlBackupFileInfo
source§fn eq(&self, other: &SqlBackupFileInfo) -> bool
fn eq(&self, other: &SqlBackupFileInfo) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for SqlBackupFileInfo
impl Serialize for SqlBackupFileInfo
impl StructuralPartialEq for SqlBackupFileInfo
Auto Trait Implementations§
impl RefUnwindSafe for SqlBackupFileInfo
impl Send for SqlBackupFileInfo
impl Sync for SqlBackupFileInfo
impl Unpin for SqlBackupFileInfo
impl UnwindSafe for SqlBackupFileInfo
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