Struct fuse_backend_rs::api::vfs::VfsOptions
source · [−]pub struct VfsOptions {
pub no_open: bool,
pub no_opendir: bool,
pub no_writeback: bool,
pub no_readdir: bool,
pub killpriv_v2: bool,
pub in_opts: FsOptions,
pub out_opts: FsOptions,
}
Expand description
vfs init options
Fields
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.
no_readdir: bool
Make readdir/readdirplus request return zero dirent even if dir has children.
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
in_opts: FsOptions
File system options passed in from client
out_opts: FsOptions
File system options returned to client
Trait Implementations
sourceimpl Clone for VfsOptions
impl Clone for VfsOptions
sourcefn clone(&self) -> VfsOptions
fn clone(&self) -> VfsOptions
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for VfsOptions
impl Debug for VfsOptions
sourceimpl Default for VfsOptions
impl Default for VfsOptions
impl Copy for VfsOptions
Auto Trait Implementations
impl RefUnwindSafe for VfsOptions
impl Send for VfsOptions
impl Sync for VfsOptions
impl Unpin for VfsOptions
impl UnwindSafe for VfsOptions
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more