pub enum FileSystemActivity {
Open(String),
Delete(String),
Move((String, String)),
Create(String),
Unknown,
}Variants§
Trait Implementations§
Source§impl Clone for FileSystemActivity
impl Clone for FileSystemActivity
Source§fn clone(&self) -> FileSystemActivity
fn clone(&self) -> FileSystemActivity
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 FileSystemActivity
impl Debug for FileSystemActivity
Source§impl Default for FileSystemActivity
impl Default for FileSystemActivity
Source§fn default() -> FileSystemActivity
fn default() -> FileSystemActivity
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for FileSystemActivity
impl RefUnwindSafe for FileSystemActivity
impl Send for FileSystemActivity
impl Sync for FileSystemActivity
impl Unpin for FileSystemActivity
impl UnwindSafe for FileSystemActivity
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