pub struct RestoreResult {
pub path: PathBuf,
pub success: bool,
}Expand description
Result of a restore operation.
Fields§
§path: PathBufPath to the restored backup file.
success: boolWhether the restore was successful.
Trait Implementations§
Source§impl Clone for RestoreResult
impl Clone for RestoreResult
Source§fn clone(&self) -> RestoreResult
fn clone(&self) -> RestoreResult
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 moreAuto Trait Implementations§
impl Freeze for RestoreResult
impl RefUnwindSafe for RestoreResult
impl Send for RestoreResult
impl Sync for RestoreResult
impl Unpin for RestoreResult
impl UnwindSafe for RestoreResult
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