fuse_opcode

Enum fuse_opcode 

Source
#[repr(C)]
pub enum fuse_opcode {
Show 37 variants CUSE_INIT = 4_096, FUSE_LOOKUP = 1, FUSE_FORGET = 2, FUSE_GETATTR = 3, FUSE_SETATTR = 4, FUSE_READLINK = 5, FUSE_SYMLINK = 6, FUSE_MKNOD = 8, FUSE_MKDIR = 9, FUSE_UNLINK = 10, FUSE_RMDIR = 11, FUSE_RENAME = 12, FUSE_LINK = 13, FUSE_OPEN = 14, FUSE_READ = 15, FUSE_WRITE = 16, FUSE_STATFS = 17, FUSE_RELEASE = 18, FUSE_FSYNC = 20, FUSE_SETXATTR = 21, FUSE_GETXATTR = 22, FUSE_LISTXATTR = 23, FUSE_REMOVEXATTR = 24, FUSE_FLUSH = 25, FUSE_INIT = 26, FUSE_OPENDIR = 27, FUSE_READDIR = 28, FUSE_RELEASEDIR = 29, FUSE_FSYNCDIR = 30, FUSE_GETLK = 31, FUSE_SETLK = 32, FUSE_SETLKW = 33, FUSE_ACCESS = 34, FUSE_CREATE = 35, FUSE_INTERRUPT = 36, FUSE_BMAP = 37, FUSE_DESTROY = 38,
}

Variants§

§

CUSE_INIT = 4_096

§

FUSE_LOOKUP = 1

§

FUSE_FORGET = 2

§

FUSE_GETATTR = 3

§

FUSE_SETATTR = 4

§

FUSE_MKNOD = 8

§

FUSE_MKDIR = 9

§

FUSE_RMDIR = 11

§

FUSE_RENAME = 12

§

FUSE_OPEN = 14

§

FUSE_READ = 15

§

FUSE_WRITE = 16

§

FUSE_STATFS = 17

§

FUSE_RELEASE = 18

§

FUSE_FSYNC = 20

§

FUSE_SETXATTR = 21

§

FUSE_GETXATTR = 22

§

FUSE_LISTXATTR = 23

§

FUSE_REMOVEXATTR = 24

§

FUSE_FLUSH = 25

§

FUSE_INIT = 26

§

FUSE_OPENDIR = 27

§

FUSE_READDIR = 28

§

FUSE_RELEASEDIR = 29

§

FUSE_FSYNCDIR = 30

§

FUSE_GETLK = 31

§

FUSE_SETLK = 32

§

FUSE_SETLKW = 33

§

FUSE_ACCESS = 34

§

FUSE_CREATE = 35

§

FUSE_INTERRUPT = 36

§

FUSE_BMAP = 37

§

FUSE_DESTROY = 38

Implementations§

Trait Implementations§

Source§

impl Debug for fuse_opcode

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.