#[repr(u32)]pub enum FuseOpcode {
Show 47 variants
Lookup = 1,
Forget = 2,
Getattr = 3,
Setattr = 4,
Readlink = 5,
Symlink = 6,
Mknod = 8,
Mkdir = 9,
Unlink = 10,
Rmdir = 11,
Rename = 12,
Link = 13,
Open = 14,
Read = 15,
Write = 16,
Statfs = 17,
Release = 18,
Fsync = 20,
Setxattr = 21,
Getxattr = 22,
Listxattr = 23,
Removexattr = 24,
Flush = 25,
Init = 26,
Opendir = 27,
Readdir = 28,
Releasedir = 29,
Fsyncdir = 30,
Getlk = 31,
Setlk = 32,
Setlkw = 33,
Access = 34,
Create = 35,
Interrupt = 36,
Bmap = 37,
Destroy = 38,
Ioctl = 39,
Poll = 40,
NotifyReply = 41,
BatchForget = 42,
Fallocate = 43,
Readdirplus = 44,
Rename2 = 45,
Lseek = 46,
CopyFileRange = 47,
SetupMapping = 48,
RemoveMapping = 49,
}Expand description
FUSE operation codes.
Variants§
Lookup = 1
Forget = 2
Getattr = 3
Setattr = 4
Readlink = 5
Symlink = 6
Mknod = 8
Mkdir = 9
Unlink = 10
Rmdir = 11
Rename = 12
Link = 13
Open = 14
Read = 15
Write = 16
Statfs = 17
Release = 18
Fsync = 20
Setxattr = 21
Getxattr = 22
Listxattr = 23
Removexattr = 24
Flush = 25
Init = 26
Opendir = 27
Readdir = 28
Releasedir = 29
Fsyncdir = 30
Getlk = 31
Setlk = 32
Setlkw = 33
Access = 34
Create = 35
Interrupt = 36
Bmap = 37
Destroy = 38
Ioctl = 39
Poll = 40
NotifyReply = 41
BatchForget = 42
Fallocate = 43
Readdirplus = 44
Rename2 = 45
Lseek = 46
CopyFileRange = 47
SetupMapping = 48
RemoveMapping = 49
Implementations§
Trait Implementations§
Source§impl Clone for FuseOpcode
impl Clone for FuseOpcode
Source§fn clone(&self) -> FuseOpcode
fn clone(&self) -> FuseOpcode
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for FuseOpcode
Source§impl Debug for FuseOpcode
impl Debug for FuseOpcode
impl Eq for FuseOpcode
Source§impl PartialEq for FuseOpcode
impl PartialEq for FuseOpcode
Source§fn eq(&self, other: &FuseOpcode) -> bool
fn eq(&self, other: &FuseOpcode) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for FuseOpcode
Auto Trait Implementations§
impl Freeze for FuseOpcode
impl RefUnwindSafe for FuseOpcode
impl Send for FuseOpcode
impl Sync for FuseOpcode
impl Unpin for FuseOpcode
impl UnsafeUnpin for FuseOpcode
impl UnwindSafe for FuseOpcode
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§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more