Struct fuse_backend_rs::api::vfs::VfsOptions

source ·
pub struct VfsOptions {
    pub no_readdir: bool,
    pub seal_size: bool,
    pub in_opts: FsOptions,
    pub out_opts: FsOptions,
    pub id_mapping: (u32, u32, u32),
    pub no_open: bool,
    pub no_opendir: bool,
    pub no_writeback: bool,
    pub killpriv_v2: bool,
}
Expand description

vfs init options

Fields§

§no_readdir: bool

Make readdir/readdirplus request return zero dirent even if dir has children.

§seal_size: bool

Reject requests which will change the file size, or allocate file blocks exceed file size.

§in_opts: FsOptions

File system options passed in from client

§out_opts: FsOptions

File system options returned to client

§id_mapping: (u32, u32, u32)

Declaration of ID mapping, in the format (internal ID, external ID, range). For example, (0, 1, 65536) represents mapping the external UID/GID range of 1~65536 to the range of 0~65535 within the filesystem.

§no_open: bool

Disable fuse open request handling. When enabled, fuse open requests are always replied with ENOSYS.

§no_opendir: bool

Disable fuse opendir request handling. When enabled, fuse opendir requests are always replied with ENOSYS.

§no_writeback: bool

Disable fuse WRITEBACK_CACHE option so that kernel will not cache buffer writes.

§killpriv_v2: bool

Enable fuse killpriv_v2 support. When enabled, fuse file system makes sure to remove security.capability xattr and setuid/setgid bits. See details in comments for HANDLE_KILLPRIV_V2

Trait Implementations§

source§

impl Clone for VfsOptions

source§

fn clone(&self) -> VfsOptions

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for VfsOptions

source§

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

Formats the value using the given formatter. Read more
source§

impl Default for VfsOptions

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl Copy for VfsOptions

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> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

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

§

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>,

§

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.