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 for WatcherKind
impl PartialEq for WatcherKind
impl Copy for WatcherKind
impl Eq for WatcherKind
impl StructuralPartialEq for WatcherKind
Auto Trait Implementations§
impl Freeze for WatcherKind
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)