pub enum SessionACL {
All,
RootAndOwner,
Owner,
}Expand description
How requests should be filtered based on the calling UID.
Variants§
All
Allow requests from any user. Corresponds to the allow_other mount option.
RootAndOwner
Allow requests from root. Corresponds to the allow_root mount option.
Owner
Allow requests from the owning UID. This is FUSE’s default mode of operation.
Trait Implementations§
Source§impl Debug for SessionACL
impl Debug for SessionACL
Source§impl Default for SessionACL
impl Default for SessionACL
Source§fn default() -> SessionACL
fn default() -> SessionACL
Returns the “default value” for a type. Read more
Source§impl PartialEq for SessionACL
impl PartialEq for SessionACL
impl Eq for SessionACL
impl StructuralPartialEq for SessionACL
Auto Trait Implementations§
impl Freeze for SessionACL
impl RefUnwindSafe for SessionACL
impl Send for SessionACL
impl Sync for SessionACL
impl Unpin for SessionACL
impl UnwindSafe for SessionACL
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