#[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
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