#[repr(C)]pub enum FuseNotifyCode {
FUSE_POLL = 1,
FUSE_NOTIFY_INVAL_INODE = 2,
FUSE_NOTIFY_INVAL_ENTRY = 3,
FUSE_NOTIFY_STORE = 4,
FUSE_NOTIFY_RETRIEVE = 5,
FUSE_NOTIFY_DELETE = 6,
FUSE_NOTIFY_CODE_MAX = 7,
}Expand description
FUSE notify code fuse_notify_code
Variants§
FUSE_POLL = 1
Poll
FUSE_NOTIFY_INVAL_INODE = 2
Notify invalid inode
FUSE_NOTIFY_INVAL_ENTRY = 3
Notify invalid entry
FUSE_NOTIFY_STORE = 4
Notify store
FUSE_NOTIFY_RETRIEVE = 5
Notify retrieve
FUSE_NOTIFY_DELETE = 6
Notify delete
FUSE_NOTIFY_CODE_MAX = 7
Max notify code
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FuseNotifyCode
impl RefUnwindSafe for FuseNotifyCode
impl Send for FuseNotifyCode
impl Sync for FuseNotifyCode
impl Unpin for FuseNotifyCode
impl UnwindSafe for FuseNotifyCode
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