Enum notify::WatcherKind
source · #[non_exhaustive]pub enum WatcherKind {
Inotify,
Fsevent,
Kqueue,
PollWatcher,
ReadDirectoryChangesWatcher,
NullWatcher,
}
Expand description
Watcher kind enumeration
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Inotify
inotify backend (linux)
Fsevent
FS-Event backend (mac)
Kqueue
KQueue backend (bsd,optionally mac)
PollWatcher
Polling based backend (fallback)
ReadDirectoryChangesWatcher
Windows backend
NullWatcher
Fake watcher for testing
Trait Implementations§
source§impl Clone for WatcherKind
impl Clone for WatcherKind
source§fn clone(&self) -> WatcherKind
fn clone(&self) -> WatcherKind
Returns a copy 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 WatcherKind
impl Debug for WatcherKind
source§impl Hash for WatcherKind
impl Hash for WatcherKind
source§impl PartialEq<WatcherKind> for WatcherKind
impl PartialEq<WatcherKind> for WatcherKind
source§fn eq(&self, other: &WatcherKind) -> bool
fn eq(&self, other: &WatcherKind) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for WatcherKind
impl Eq for WatcherKind
impl StructuralEq for WatcherKind
impl StructuralPartialEq for WatcherKind
Auto Trait Implementations§
impl RefUnwindSafe for WatcherKind
impl Send for WatcherKind
impl Sync for WatcherKind
impl Unpin for WatcherKind
impl UnwindSafe for WatcherKind
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