pub enum Operation {
Exists,
Read,
Write,
Delete,
ListFiles,
DeleteFiles,
ModifyPath,
}
Expand description
A file or folder operation.
Variants§
Exists
Check if a file exists.
Read
Read a file.
Write
Write a file.
Delete
Delete a file.
ListFiles
List the files in a folder.
DeleteFiles
Delete the files in a folder.
ModifyPath
Modify the path.
Trait Implementations§
Source§impl Ord for Operation
impl Ord for Operation
Source§impl PartialOrd for Operation
impl PartialOrd for Operation
impl Copy for Operation
impl Eq for Operation
impl StructuralPartialEq for Operation
Auto Trait Implementations§
impl Freeze for Operation
impl RefUnwindSafe for Operation
impl Send for Operation
impl Sync for Operation
impl Unpin for Operation
impl UnwindSafe for Operation
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