pub struct RestoreOutcome {
pub written: Vec<PathBuf>,
pub deleted: Vec<PathBuf>,
}Expand description
Summary of files changed on disk by a restore operation.
Fields§
§written: Vec<PathBuf>§deleted: Vec<PathBuf>Trait Implementations§
Source§impl Clone for RestoreOutcome
impl Clone for RestoreOutcome
Source§fn clone(&self) -> RestoreOutcome
fn clone(&self) -> RestoreOutcome
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 RestoreOutcome
impl Debug for RestoreOutcome
Source§impl Default for RestoreOutcome
impl Default for RestoreOutcome
Source§fn default() -> RestoreOutcome
fn default() -> RestoreOutcome
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for RestoreOutcome
impl RefUnwindSafe for RestoreOutcome
impl Send for RestoreOutcome
impl Sync for RestoreOutcome
impl Unpin for RestoreOutcome
impl UnsafeUnpin for RestoreOutcome
impl UnwindSafe for RestoreOutcome
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