pub struct RollbackInfo {
pub backups: Vec<(PathBuf, PathBuf)>,
pub written_files: Vec<PathBuf>,
}Expand description
Information for rolling back changes
Fields§
§backups: Vec<(PathBuf, PathBuf)>Backups that were created
written_files: Vec<PathBuf>Files that were written
Trait Implementations§
Source§impl Clone for RollbackInfo
impl Clone for RollbackInfo
Source§fn clone(&self) -> RollbackInfo
fn clone(&self) -> RollbackInfo
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 RollbackInfo
impl RefUnwindSafe for RollbackInfo
impl Send for RollbackInfo
impl Sync for RollbackInfo
impl Unpin for RollbackInfo
impl UnwindSafe for RollbackInfo
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