pub struct BackupOutcome {
pub service: String,
pub paths: usize,
}Expand description
The result of a backup run.
Fields§
§service: String§paths: usizePaths included in the snapshot.
Trait Implementations§
Source§impl Clone for BackupOutcome
impl Clone for BackupOutcome
Source§fn clone(&self) -> BackupOutcome
fn clone(&self) -> BackupOutcome
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 BackupOutcome
impl Debug for BackupOutcome
Source§impl<'de> Deserialize<'de> for BackupOutcome
impl<'de> Deserialize<'de> for BackupOutcome
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 BackupOutcome
impl RefUnwindSafe for BackupOutcome
impl Send for BackupOutcome
impl Sync for BackupOutcome
impl Unpin for BackupOutcome
impl UnsafeUnpin for BackupOutcome
impl UnwindSafe for BackupOutcome
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