pub enum UndoableOperation {
FilesMoved {
moves: Vec<(PathBuf, PathBuf)>,
},
FilesCopied {
created: Vec<PathBuf>,
},
FilesDeleted {
paths: Vec<PathBuf>,
},
FileRenamed {
path: PathBuf,
old_path: PathBuf,
new_name: String,
},
FileCreated {
path: PathBuf,
},
DirectoryCreated {
path: PathBuf,
},
}Expand description
An operation that can be undone.
Variants§
FilesMoved
Files were moved from one location to another.
FilesCopied
Files were copied to a destination.
FilesDeleted
Files were moved to trash or permanently deleted.
FileRenamed
A file or directory was renamed.
Fields
FileCreated
A file was created.
DirectoryCreated
A directory was created.
Implementations§
Trait Implementations§
Source§impl Clone for UndoableOperation
impl Clone for UndoableOperation
Source§fn clone(&self) -> UndoableOperation
fn clone(&self) -> UndoableOperation
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 UndoableOperation
impl Debug for UndoableOperation
Source§impl<'de> Deserialize<'de> for UndoableOperation
impl<'de> Deserialize<'de> for UndoableOperation
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 UndoableOperation
impl RefUnwindSafe for UndoableOperation
impl Send for UndoableOperation
impl Sync for UndoableOperation
impl Unpin for UndoableOperation
impl UnsafeUnpin for UndoableOperation
impl UnwindSafe for UndoableOperation
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