#[non_exhaustive]pub enum FuseOverlayFsOption {
CloneFd,
MaxIdleThread(isize),
MaxThread(usize),
AllowOther,
AllowRoot,
SquashToRoot,
SquashToUid(usize),
SquashToGid(usize),
StaticNLink,
NoAcl,
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
CloneFd
Use separate fuse device fd for each thread
MaxIdleThread(isize)
The maximum number of idle worker threads allowed (default: -1)
MaxThread(usize)
The maximum number of worker threads allowed (default: 10)
AllowOther
Allow access by all users
AllowRoot
Allow access by root
SquashToRoot
Every file and directory is owned by the root user (0:0).
SquashToUid(usize)
Every file and directory is owned by the specified uid. It has higher precedence over squash_to_root.
SquashToGid(usize)
Every file and directory is owned by the specified gid. It has higher precedence over squash_to_root.
StaticNLink
Set st_nlink to static value 1 for all directories
NoAcl
Disable ACL support in the FUSE file system
Trait Implementations§
Source§impl Clone for FuseOverlayFsOption
impl Clone for FuseOverlayFsOption
Source§fn clone(&self) -> FuseOverlayFsOption
fn clone(&self) -> FuseOverlayFsOption
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for FuseOverlayFsOption
impl Debug for FuseOverlayFsOption
Source§impl Display for FuseOverlayFsOption
impl Display for FuseOverlayFsOption
Source§impl From<FuseOverlayFsOption> for String
impl From<FuseOverlayFsOption> for String
Source§fn from(val: FuseOverlayFsOption) -> Self
fn from(val: FuseOverlayFsOption) -> Self
Converts to this type from the input type.
Source§impl FromStr for FuseOverlayFsOption
impl FromStr for FuseOverlayFsOption
Source§impl Ord for FuseOverlayFsOption
impl Ord for FuseOverlayFsOption
Source§fn cmp(&self, other: &FuseOverlayFsOption) -> Ordering
fn cmp(&self, other: &FuseOverlayFsOption) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for FuseOverlayFsOption
impl PartialEq for FuseOverlayFsOption
Source§impl PartialOrd for FuseOverlayFsOption
impl PartialOrd for FuseOverlayFsOption
impl Eq for FuseOverlayFsOption
impl StructuralPartialEq for FuseOverlayFsOption
Auto Trait Implementations§
impl Freeze for FuseOverlayFsOption
impl RefUnwindSafe for FuseOverlayFsOption
impl Send for FuseOverlayFsOption
impl Sync for FuseOverlayFsOption
impl Unpin for FuseOverlayFsOption
impl UnwindSafe for FuseOverlayFsOption
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more