pub enum NormalizedWatchKind {
Create {
path: String,
},
Remove {
path: String,
},
Modify {
path: String,
},
Rename {
from: String,
to: String,
},
PartialRename {
from: Option<String>,
to: Option<String>,
},
}Expand description
Consumer-facing normalized watcher kind.
Variants§
Trait Implementations§
Source§impl Clone for NormalizedWatchKind
impl Clone for NormalizedWatchKind
Source§fn clone(&self) -> NormalizedWatchKind
fn clone(&self) -> NormalizedWatchKind
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 NormalizedWatchKind
impl Debug for NormalizedWatchKind
Source§impl PartialEq for NormalizedWatchKind
impl PartialEq for NormalizedWatchKind
impl Eq for NormalizedWatchKind
impl StructuralPartialEq for NormalizedWatchKind
Auto Trait Implementations§
impl Freeze for NormalizedWatchKind
impl RefUnwindSafe for NormalizedWatchKind
impl Send for NormalizedWatchKind
impl Sync for NormalizedWatchKind
impl Unpin for NormalizedWatchKind
impl UnsafeUnpin for NormalizedWatchKind
impl UnwindSafe for NormalizedWatchKind
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