#[repr(u32)]pub enum fuse_notify_code {
FUSE_NOTIFY_POLL = 1,
FUSE_NOTIFY_INVAL_INODE = 2,
FUSE_NOTIFY_INVAL_ENTRY = 3,
FUSE_NOTIFY_STORE = 4,
FUSE_NOTIFY_RETRIEVE = 5,
FUSE_NOTIFY_DELETE = 6,
}
Variants§
FUSE_NOTIFY_POLL = 1
FUSE_NOTIFY_INVAL_INODE = 2
FUSE_NOTIFY_INVAL_ENTRY = 3
FUSE_NOTIFY_STORE = 4
FUSE_NOTIFY_RETRIEVE = 5
FUSE_NOTIFY_DELETE = 6
Trait Implementations§
source§impl Clone for fuse_notify_code
impl Clone for fuse_notify_code
source§fn clone(&self) -> fuse_notify_code
fn clone(&self) -> fuse_notify_code
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 Hash for fuse_notify_code
impl Hash for fuse_notify_code
source§impl PartialEq for fuse_notify_code
impl PartialEq for fuse_notify_code
source§fn eq(&self, other: &fuse_notify_code) -> bool
fn eq(&self, other: &fuse_notify_code) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for fuse_notify_code
impl StructuralPartialEq for fuse_notify_code
Auto Trait Implementations§
impl Freeze for fuse_notify_code
impl RefUnwindSafe for fuse_notify_code
impl Send for fuse_notify_code
impl Sync for fuse_notify_code
impl Unpin for fuse_notify_code
impl UnwindSafe for fuse_notify_code
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