Enum notify::event::AccessKind
source · pub enum AccessKind {
Any,
Read,
Open(AccessMode),
Close(AccessMode),
Other,
}
Expand description
An event describing non-mutating access operations on files.
Variants§
Any
The catch-all case, to be used when the specific kind of event is unknown.
Read
An event emitted when the file is read.
Open(AccessMode)
An event emitted when the file, or a handle to the file, is opened.
Close(AccessMode)
An event emitted when the file, or a handle to the file, is closed.
Other
An event which specific kind is known but cannot be represented otherwise.
Trait Implementations§
source§impl Clone for AccessKind
impl Clone for AccessKind
source§fn clone(&self) -> AccessKind
fn clone(&self) -> AccessKind
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 AccessKind
impl Debug for AccessKind
source§impl Hash for AccessKind
impl Hash for AccessKind
source§impl PartialEq for AccessKind
impl PartialEq for AccessKind
impl Copy for AccessKind
impl Eq for AccessKind
impl StructuralPartialEq for AccessKind
Auto Trait Implementations§
impl Freeze for AccessKind
impl RefUnwindSafe for AccessKind
impl Send for AccessKind
impl Sync for AccessKind
impl Unpin for AccessKind
impl UnwindSafe for AccessKind
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
)