Enum notify::event::CreateKind
source · [−]pub enum CreateKind {
Any,
File,
Folder,
Other,
}Expand description
An event describing creation operations on files.
Variants
Any
The catch-all case, to be used when the specific kind of event is unknown.
File
An event which results in the creation of a file.
Folder
An event which results in the creation of a folder.
Other
An event which specific kind is known but cannot be represented otherwise.
Trait Implementations
sourceimpl Clone for CreateKind
impl Clone for CreateKind
sourcefn clone(&self) -> CreateKind
fn clone(&self) -> CreateKind
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for CreateKind
impl Debug for CreateKind
sourceimpl Hash for CreateKind
impl Hash for CreateKind
sourceimpl PartialEq<CreateKind> for CreateKind
impl PartialEq<CreateKind> for CreateKind
sourcefn eq(&self, other: &CreateKind) -> bool
fn eq(&self, other: &CreateKind) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
impl Copy for CreateKind
impl Eq for CreateKind
impl StructuralEq for CreateKind
impl StructuralPartialEq for CreateKind
Auto Trait Implementations
impl RefUnwindSafe for CreateKind
impl Send for CreateKind
impl Sync for CreateKind
impl Unpin for CreateKind
impl UnwindSafe for CreateKind
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more