[][src]Struct fuse::protocol::fuse_init::FuseInitFlags

#[non_exhaustive]pub struct FuseInitFlags {
    pub async_read: bool,
    pub posix_locks: bool,
    pub file_ops: bool,
    pub atomic_o_trunc: bool,
    pub export_support: bool,
    pub big_writes: bool,
    pub dont_mask: bool,
    pub splice_write: bool,
    pub splice_move: bool,
    pub splice_read: bool,
    pub flock_locks: bool,
    pub has_ioctl_dir: bool,
    pub auto_inval_data: bool,
    pub do_readdirplus: bool,
    pub readdirplus_auto: bool,
    pub async_dio: bool,
    pub writeback_cache: bool,
    pub no_open_support: bool,
    pub parallel_dirops: bool,
    pub handle_killpriv: bool,
    pub posix_acl: bool,
    pub abort_error: bool,
    // some fields omitted
}

Fields (Non-exhaustive)

Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
async_read: boolposix_locks: boolfile_ops: boolatomic_o_trunc: boolexport_support: boolbig_writes: booldont_mask: boolsplice_write: boolsplice_move: boolsplice_read: boolflock_locks: boolhas_ioctl_dir: boolauto_inval_data: booldo_readdirplus: boolreaddirplus_auto: boolasync_dio: boolwriteback_cache: boolno_open_support: boolparallel_dirops: boolhandle_killpriv: boolposix_acl: boolabort_error: bool

Implementations

impl FuseInitFlags[src]

pub fn new() -> FuseInitFlags[src]

Trait Implementations

impl Clone for FuseInitFlags[src]

impl Copy for FuseInitFlags[src]

impl Debug for FuseInitFlags[src]

impl Eq for FuseInitFlags[src]

impl PartialEq<FuseInitFlags> for FuseInitFlags[src]

impl StructuralEq for FuseInitFlags[src]

impl StructuralPartialEq for FuseInitFlags[src]

Auto Trait Implementations

impl RefUnwindSafe for FuseInitFlags

impl Send for FuseInitFlags

impl Sync for FuseInitFlags

impl Unpin for FuseInitFlags

impl UnwindSafe for FuseInitFlags

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.