Enum comfy_wgpu::notify::RecursiveMode
pub enum RecursiveMode {
Recursive,
NonRecursive,
}Expand description
Indicates whether only the provided directory or its sub-directories as well should be watched
Variants§
Recursive
Watch all sub-directories as well, including directories created after installing the watch
NonRecursive
Watch only the provided directory
Trait Implementations§
§impl Clone for RecursiveMode
impl Clone for RecursiveMode
§fn clone(&self) -> RecursiveMode
fn clone(&self) -> RecursiveMode
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 more§impl Debug for RecursiveMode
impl Debug for RecursiveMode
§impl Hash for RecursiveMode
impl Hash for RecursiveMode
§impl Ord for RecursiveMode
impl Ord for RecursiveMode
§impl PartialEq<RecursiveMode> for RecursiveMode
impl PartialEq<RecursiveMode> for RecursiveMode
§fn eq(&self, other: &RecursiveMode) -> bool
fn eq(&self, other: &RecursiveMode) -> bool
This method tests for
self and other values to be equal, and is used
by ==.§impl PartialOrd<RecursiveMode> for RecursiveMode
impl PartialOrd<RecursiveMode> for RecursiveMode
§fn partial_cmp(&self, other: &RecursiveMode) -> Option<Ordering>
fn partial_cmp(&self, other: &RecursiveMode) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read moreimpl Copy for RecursiveMode
impl Eq for RecursiveMode
impl StructuralEq for RecursiveMode
impl StructuralPartialEq for RecursiveMode
Auto Trait Implementations§
impl RefUnwindSafe for RecursiveMode
impl Send for RecursiveMode
impl Sync for RecursiveMode
impl Unpin for RecursiveMode
impl UnwindSafe for RecursiveMode
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
§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.