pub struct BackupFileInfo {
pub file_location: Option<String>,
pub family_sequence_number: Option<i64>,
pub status: Option<BackupFileStatus>,
}
Expand description
Information of the backup file
Fields§
§file_location: Option<String>
Location of the backup file in shared folder
family_sequence_number: Option<i64>
Sequence number of the backup file in the backup set
status: Option<BackupFileStatus>
An enumeration of Status of the log backup file.
Implementations§
Trait Implementations§
source§impl Clone for BackupFileInfo
impl Clone for BackupFileInfo
source§fn clone(&self) -> BackupFileInfo
fn clone(&self) -> BackupFileInfo
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 BackupFileInfo
impl Debug for BackupFileInfo
source§impl Default for BackupFileInfo
impl Default for BackupFileInfo
source§fn default() -> BackupFileInfo
fn default() -> BackupFileInfo
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for BackupFileInfo
impl<'de> Deserialize<'de> for BackupFileInfo
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<BackupFileInfo> for BackupFileInfo
impl PartialEq<BackupFileInfo> for BackupFileInfo
source§fn eq(&self, other: &BackupFileInfo) -> bool
fn eq(&self, other: &BackupFileInfo) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for BackupFileInfo
impl Serialize for BackupFileInfo
impl StructuralPartialEq for BackupFileInfo
Auto Trait Implementations§
impl RefUnwindSafe for BackupFileInfo
impl Send for BackupFileInfo
impl Sync for BackupFileInfo
impl Unpin for BackupFileInfo
impl UnwindSafe for BackupFileInfo
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