Enum comfy_wgpu::notify::event::AccessMode
pub enum AccessMode {
Any,
Execute,
Read,
Write,
Other,
}Expand description
An event describing open or close operations on files.
Variants§
Any
The catch-all case, to be used when the specific kind of event is unknown.
Execute
An event emitted when the file is executed, or the folder opened.
Read
An event emitted when the file is opened for reading.
Write
An event emitted when the file is opened for writing.
Other
An event which specific kind is known but cannot be represented otherwise.
Trait Implementations§
§impl Clone for AccessMode
impl Clone for AccessMode
§fn clone(&self) -> AccessMode
fn clone(&self) -> AccessMode
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 AccessMode
impl Debug for AccessMode
§impl Hash for AccessMode
impl Hash for AccessMode
§impl PartialEq<AccessMode> for AccessMode
impl PartialEq<AccessMode> for AccessMode
§fn eq(&self, other: &AccessMode) -> bool
fn eq(&self, other: &AccessMode) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Copy for AccessMode
impl Eq for AccessMode
impl StructuralEq for AccessMode
impl StructuralPartialEq for AccessMode
Auto Trait Implementations§
impl RefUnwindSafe for AccessMode
impl Send for AccessMode
impl Sync for AccessMode
impl Unpin for AccessMode
impl UnwindSafe for AccessMode
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.