Enum fuser::MountOption [−][src]
pub enum MountOption {
}Expand description
Mount options accepted by the FUSE filesystem type See ‘man mount.fuse’ for details
Variants
FSName(String)Set the name of the source in mtab
Tuple Fields of FSName
0: StringSubtype(String)Set the filesystem subtype in mtab
Tuple Fields of Subtype
0: StringCUSTOM(String)Allows passing an option which is not otherwise supported in these enums
Tuple Fields of CUSTOM
0: StringAllow all users to access files on this filesystem. By default access is restricted to the user who mounted it
Allow the root user to access this filesystem, in addition to the user who mounted it
Automatically unmount when the mounting process exits
Enable permission checking in the kernel
Enable special character and block devices
Disable special character and block devices
Honor set-user-id and set-groupd-id bits on files
Don’t honor set-user-id and set-groupd-id bits on files
Read-only filesystem
Read-write filesystem
Allow execution of binaries
Don’t allow execution of binaries
Support inode access time
Don’t update inode access time
All modifications to directories will be done synchronously
All I/O will be done synchronously
All I/O will be done asynchronously
Trait Implementations
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl RefUnwindSafe for MountOption
impl Send for MountOption
impl Sync for MountOption
impl Unpin for MountOption
impl UnwindSafe for MountOption
Blanket Implementations
Mutably borrows from an owned value. Read more