pub enum MountStrategy {
FuseOverlayfs,
KernelUserNamespace,
}Expand description
Which OverlayFS mount mechanism to use.
Variants§
FuseOverlayfs
fuse-overlayfs user-space FUSE daemon (preferred — persistent).
KernelUserNamespace
Kernel overlayfs in a user namespace (unshare -Ur mount -t overlay …).
Implementations§
Trait Implementations§
Source§impl Clone for MountStrategy
impl Clone for MountStrategy
Source§fn clone(&self) -> MountStrategy
fn clone(&self) -> MountStrategy
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 MountStrategy
impl Debug for MountStrategy
Source§impl PartialEq for MountStrategy
impl PartialEq for MountStrategy
impl Copy for MountStrategy
impl Eq for MountStrategy
impl StructuralPartialEq for MountStrategy
Auto Trait Implementations§
impl Freeze for MountStrategy
impl RefUnwindSafe for MountStrategy
impl Send for MountStrategy
impl Sync for MountStrategy
impl Unpin for MountStrategy
impl UnsafeUnpin for MountStrategy
impl UnwindSafe for MountStrategy
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.