[]Struct polyfuse::CapabilityFlags

#[repr(transparent)]
pub struct CapabilityFlags { /* fields omitted */ }

Capability flags to control the behavior of the kernel driver.

Methods

impl CapabilityFlags

pub const ASYNC_READ: CapabilityFlags

The filesystem supports asynchronous read requests.

Enabled by default.

pub const ATOMIC_O_TRUNC: CapabilityFlags

The filesystem supports the O_TRUNC open flag.

Enabled by default.

pub const AUTO_INVAL_DATA: CapabilityFlags

The kernel check the validity of attributes on every read.

Enabled by default.

pub const ASYNC_DIO: CapabilityFlags

The filesystem supports asynchronous direct I/O submission.

Enabled by default.

pub const PARALLEL_DIROPS: CapabilityFlags

The kernel supports parallel directory operations.

Enabled by default.

pub const HANDLE_KILLPRIV: CapabilityFlags

The filesystem is responsible for unsetting setuid and setgid bits when a file is written, truncated, or its owner is changed.

Enabled by default.

pub const POSIX_LOCKS: CapabilityFlags

The filesystem supports the POSIX-style file lock.

pub const FLOCK_LOCKS: CapabilityFlags

The filesystem supports the flock handling.

pub const EXPORT_SUPPORT: CapabilityFlags

The filesystem supports lookups of "." and "..".

pub const DONT_MASK: CapabilityFlags

The kernel should not apply the umask to the file mode on create operations.

pub const WRITEBACK_CACHE: CapabilityFlags

The writeback caching should be enabled.

pub const POSIX_ACL: CapabilityFlags

The filesystem supports POSIX access control lists.

pub const READDIRPLUS: CapabilityFlags

The filesystem supports readdirplus operations.

pub const READDIRPLUS_AUTO: CapabilityFlags

Indicates that the kernel uses the adaptive readdirplus.

pub const fn empty() -> CapabilityFlags

Returns an empty set of flags

pub const fn all() -> CapabilityFlags

Returns the set containing all flags.

pub const fn bits(&self) -> u32

Returns the raw value of the flags currently stored.

pub fn from_bits(bits: u32) -> Option<CapabilityFlags>

Convert from underlying bit representation, unless that representation contains bits that do not correspond to a flag.

pub const fn from_bits_truncate(bits: u32) -> CapabilityFlags

Convert from underlying bit representation, dropping any bits that do not correspond to flags.

pub const unsafe fn from_bits_unchecked(bits: u32) -> CapabilityFlags

Convert from underlying bit representation, preserving all bits (even those not corresponding to a defined flag).

pub const fn is_empty(&self) -> bool

Returns true if no flags are currently stored.

pub const fn is_all(&self) -> bool

Returns true if all flags are currently set.

pub const fn intersects(&self, other: CapabilityFlags) -> bool

Returns true if there are flags common to both self and other.

pub const fn contains(&self, other: CapabilityFlags) -> bool

Returns true all of the flags in other are contained within self.

pub fn insert(&mut self, other: CapabilityFlags)

Inserts the specified flags in-place.

pub fn remove(&mut self, other: CapabilityFlags)

Removes the specified flags in-place.

pub fn toggle(&mut self, other: CapabilityFlags)

Toggles the specified flags in-place.

pub fn set(&mut self, other: CapabilityFlags, value: bool)

Inserts or removes the specified flags depending on the passed value.

Trait Implementations

impl Binary for CapabilityFlags

impl BitAnd<CapabilityFlags> for CapabilityFlags

type Output = CapabilityFlags

The resulting type after applying the & operator.

fn bitand(self, other: CapabilityFlags) -> CapabilityFlags

Returns the intersection between the two sets of flags.

impl BitAndAssign<CapabilityFlags> for CapabilityFlags

fn bitand_assign(&mut self, other: CapabilityFlags)

Disables all flags disabled in the set.

impl BitOr<CapabilityFlags> for CapabilityFlags

type Output = CapabilityFlags

The resulting type after applying the | operator.

fn bitor(self, other: CapabilityFlags) -> CapabilityFlags

Returns the union of the two sets of flags.

impl BitOrAssign<CapabilityFlags> for CapabilityFlags

fn bitor_assign(&mut self, other: CapabilityFlags)

Adds the set of flags.

impl BitXor<CapabilityFlags> for CapabilityFlags

type Output = CapabilityFlags

The resulting type after applying the ^ operator.

fn bitxor(self, other: CapabilityFlags) -> CapabilityFlags

Returns the left flags, but with all the right flags toggled.

impl BitXorAssign<CapabilityFlags> for CapabilityFlags

fn bitxor_assign(&mut self, other: CapabilityFlags)

Toggles the set of flags.

impl Clone for CapabilityFlags

impl Copy for CapabilityFlags

impl Debug for CapabilityFlags

impl Default for CapabilityFlags[src]

impl Eq for CapabilityFlags

impl Extend<CapabilityFlags> for CapabilityFlags

impl FromIterator<CapabilityFlags> for CapabilityFlags

impl Hash for CapabilityFlags

impl LowerHex for CapabilityFlags

impl Not for CapabilityFlags

type Output = CapabilityFlags

The resulting type after applying the ! operator.

fn not(self) -> CapabilityFlags

Returns the complement of this set of flags.

impl Octal for CapabilityFlags

impl Ord for CapabilityFlags

impl PartialEq<CapabilityFlags> for CapabilityFlags

impl PartialOrd<CapabilityFlags> for CapabilityFlags

impl StructuralEq for CapabilityFlags

impl StructuralPartialEq for CapabilityFlags

impl Sub<CapabilityFlags> for CapabilityFlags

type Output = CapabilityFlags

The resulting type after applying the - operator.

fn sub(self, other: CapabilityFlags) -> CapabilityFlags

Returns the set difference of the two sets of flags.

impl SubAssign<CapabilityFlags> for CapabilityFlags

fn sub_assign(&mut self, other: CapabilityFlags)

Disables all flags enabled in the set.

impl UpperHex for CapabilityFlags

Auto Trait Implementations

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.