pub struct ResolveFlags(/* private fields */);
Expand description
RESOLVE_*
constants for use with openat2
.
Implementations§
Source§impl ResolveFlags
impl ResolveFlags
Sourcepub const NO_XDEV: ResolveFlags
pub const NO_XDEV: ResolveFlags
RESOLVE_NO_XDEV
Sourcepub const NO_MAGICLINKS: ResolveFlags
pub const NO_MAGICLINKS: ResolveFlags
RESOLVE_NO_MAGICLINKS
Sourcepub const NO_SYMLINKS: ResolveFlags
pub const NO_SYMLINKS: ResolveFlags
RESOLVE_NO_SYMLINKS
Sourcepub const BENEATH: ResolveFlags
pub const BENEATH: ResolveFlags
RESOLVE_BENEATH
Sourcepub const IN_ROOT: ResolveFlags
pub const IN_ROOT: ResolveFlags
RESOLVE_IN_ROOT
Sourcepub const CACHED: ResolveFlags
pub const CACHED: ResolveFlags
RESOLVE_CACHED
(since Linux 5.12)
Source§impl ResolveFlags
impl ResolveFlags
Sourcepub const fn empty() -> ResolveFlags
pub const fn empty() -> ResolveFlags
Get a flags value with all bits unset.
Sourcepub const fn all() -> ResolveFlags
pub const fn all() -> ResolveFlags
Get a flags value with all known bits set.
Sourcepub const fn bits(&self) -> u64
pub const fn bits(&self) -> u64
Get the underlying bits value.
The returned value is exactly the bits set in this flags value.
Sourcepub const fn from_bits(bits: u64) -> Option<ResolveFlags>
pub const fn from_bits(bits: u64) -> Option<ResolveFlags>
Convert from a bits value.
This method will return None
if any unknown bits are set.
Sourcepub const fn from_bits_truncate(bits: u64) -> ResolveFlags
pub const fn from_bits_truncate(bits: u64) -> ResolveFlags
Convert from a bits value, unsetting any unknown bits.
Sourcepub const fn from_bits_retain(bits: u64) -> ResolveFlags
pub const fn from_bits_retain(bits: u64) -> ResolveFlags
Convert from a bits value exactly.
Sourcepub fn from_name(name: &str) -> Option<ResolveFlags>
pub fn from_name(name: &str) -> Option<ResolveFlags>
Get a flags value with the bits of a flag with the given name set.
This method will return None
if name
is empty or doesn’t
correspond to any named flag.
Sourcepub const fn intersects(&self, other: ResolveFlags) -> bool
pub const fn intersects(&self, other: ResolveFlags) -> bool
Whether any set bits in a source flags value are also set in a target flags value.
Sourcepub const fn contains(&self, other: ResolveFlags) -> bool
pub const fn contains(&self, other: ResolveFlags) -> bool
Whether all set bits in a source flags value are also set in a target flags value.
Sourcepub fn insert(&mut self, other: ResolveFlags)
pub fn insert(&mut self, other: ResolveFlags)
The bitwise or (|
) of the bits in two flags values.
Sourcepub fn remove(&mut self, other: ResolveFlags)
pub fn remove(&mut self, other: ResolveFlags)
The intersection of a source flags value with the complement of a target flags value (&!
).
This method is not equivalent to self & !other
when other
has unknown bits set.
remove
won’t truncate other
, but the !
operator will.
Sourcepub fn toggle(&mut self, other: ResolveFlags)
pub fn toggle(&mut self, other: ResolveFlags)
The bitwise exclusive-or (^
) of the bits in two flags values.
Sourcepub fn set(&mut self, other: ResolveFlags, value: bool)
pub fn set(&mut self, other: ResolveFlags, value: bool)
Call insert
when value
is true
or remove
when value
is false
.
Sourcepub const fn intersection(self, other: ResolveFlags) -> ResolveFlags
pub const fn intersection(self, other: ResolveFlags) -> ResolveFlags
The bitwise and (&
) of the bits in two flags values.
Sourcepub const fn union(self, other: ResolveFlags) -> ResolveFlags
pub const fn union(self, other: ResolveFlags) -> ResolveFlags
The bitwise or (|
) of the bits in two flags values.
Sourcepub const fn difference(self, other: ResolveFlags) -> ResolveFlags
pub const fn difference(self, other: ResolveFlags) -> ResolveFlags
The intersection of a source flags value with the complement of a target flags value (&!
).
This method is not equivalent to self & !other
when other
has unknown bits set.
difference
won’t truncate other
, but the !
operator will.
Sourcepub const fn symmetric_difference(self, other: ResolveFlags) -> ResolveFlags
pub const fn symmetric_difference(self, other: ResolveFlags) -> ResolveFlags
The bitwise exclusive-or (^
) of the bits in two flags values.
Sourcepub const fn complement(self) -> ResolveFlags
pub const fn complement(self) -> ResolveFlags
The bitwise negation (!
) of the bits in a flags value, truncating the result.
Source§impl ResolveFlags
impl ResolveFlags
Sourcepub const fn iter(&self) -> Iter<ResolveFlags>
pub const fn iter(&self) -> Iter<ResolveFlags>
Yield a set of contained flags values.
Each yielded flags value will correspond to a defined named flag. Any unknown bits will be yielded together as a final flags value.
Sourcepub const fn iter_names(&self) -> IterNames<ResolveFlags>
pub const fn iter_names(&self) -> IterNames<ResolveFlags>
Yield a set of contained named flags values.
This method is like iter
, except only yields bits in contained named flags.
Any unknown bits, or bits not corresponding to a contained flag will not be yielded.
Trait Implementations§
Source§impl Binary for ResolveFlags
impl Binary for ResolveFlags
Source§impl BitAnd for ResolveFlags
impl BitAnd for ResolveFlags
Source§fn bitand(self, other: ResolveFlags) -> ResolveFlags
fn bitand(self, other: ResolveFlags) -> ResolveFlags
The bitwise and (&
) of the bits in two flags values.
Source§type Output = ResolveFlags
type Output = ResolveFlags
&
operator.Source§impl BitAndAssign for ResolveFlags
impl BitAndAssign for ResolveFlags
Source§fn bitand_assign(&mut self, other: ResolveFlags)
fn bitand_assign(&mut self, other: ResolveFlags)
The bitwise and (&
) of the bits in two flags values.
Source§impl BitOr for ResolveFlags
impl BitOr for ResolveFlags
Source§fn bitor(self, other: ResolveFlags) -> ResolveFlags
fn bitor(self, other: ResolveFlags) -> ResolveFlags
The bitwise or (|
) of the bits in two flags values.
Source§type Output = ResolveFlags
type Output = ResolveFlags
|
operator.Source§impl BitOrAssign for ResolveFlags
impl BitOrAssign for ResolveFlags
Source§fn bitor_assign(&mut self, other: ResolveFlags)
fn bitor_assign(&mut self, other: ResolveFlags)
The bitwise or (|
) of the bits in two flags values.
Source§impl BitXor for ResolveFlags
impl BitXor for ResolveFlags
Source§fn bitxor(self, other: ResolveFlags) -> ResolveFlags
fn bitxor(self, other: ResolveFlags) -> ResolveFlags
The bitwise exclusive-or (^
) of the bits in two flags values.
Source§type Output = ResolveFlags
type Output = ResolveFlags
^
operator.Source§impl BitXorAssign for ResolveFlags
impl BitXorAssign for ResolveFlags
Source§fn bitxor_assign(&mut self, other: ResolveFlags)
fn bitxor_assign(&mut self, other: ResolveFlags)
The bitwise exclusive-or (^
) of the bits in two flags values.
Source§impl Clone for ResolveFlags
impl Clone for ResolveFlags
Source§fn clone(&self) -> ResolveFlags
fn clone(&self) -> ResolveFlags
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for ResolveFlags
impl Debug for ResolveFlags
Source§impl Default for ResolveFlags
impl Default for ResolveFlags
Source§fn default() -> ResolveFlags
fn default() -> ResolveFlags
Source§impl Extend<ResolveFlags> for ResolveFlags
impl Extend<ResolveFlags> for ResolveFlags
Source§fn extend<T>(&mut self, iterator: T)where
T: IntoIterator<Item = ResolveFlags>,
fn extend<T>(&mut self, iterator: T)where
T: IntoIterator<Item = ResolveFlags>,
The bitwise or (|
) of the bits in each flags value.
Source§fn extend_one(&mut self, item: A)
fn extend_one(&mut self, item: A)
extend_one
)Source§fn extend_reserve(&mut self, additional: usize)
fn extend_reserve(&mut self, additional: usize)
extend_one
)Source§impl Flags for ResolveFlags
impl Flags for ResolveFlags
Source§const FLAGS: &'static [Flag<ResolveFlags>]
const FLAGS: &'static [Flag<ResolveFlags>]
Source§fn from_bits_retain(bits: u64) -> ResolveFlags
fn from_bits_retain(bits: u64) -> ResolveFlags
Source§fn contains_unknown_bits(&self) -> bool
fn contains_unknown_bits(&self) -> bool
true
if any unknown bits are set.Source§fn from_bits_truncate(bits: Self::Bits) -> Self
fn from_bits_truncate(bits: Self::Bits) -> Self
Source§fn from_name(name: &str) -> Option<Self>
fn from_name(name: &str) -> Option<Self>
Source§fn iter_names(&self) -> IterNames<Self>
fn iter_names(&self) -> IterNames<Self>
Source§fn intersects(&self, other: Self) -> boolwhere
Self: Sized,
fn intersects(&self, other: Self) -> boolwhere
Self: Sized,
Source§fn contains(&self, other: Self) -> boolwhere
Self: Sized,
fn contains(&self, other: Self) -> boolwhere
Self: Sized,
Source§fn insert(&mut self, other: Self)where
Self: Sized,
fn insert(&mut self, other: Self)where
Self: Sized,
|
) of the bits in two flags values.Source§fn remove(&mut self, other: Self)where
Self: Sized,
fn remove(&mut self, other: Self)where
Self: Sized,
&!
). Read moreSource§fn toggle(&mut self, other: Self)where
Self: Sized,
fn toggle(&mut self, other: Self)where
Self: Sized,
^
) of the bits in two flags values.Source§fn intersection(self, other: Self) -> Self
fn intersection(self, other: Self) -> Self
&
) of the bits in two flags values.Source§fn difference(self, other: Self) -> Self
fn difference(self, other: Self) -> Self
&!
). Read moreSource§fn symmetric_difference(self, other: Self) -> Self
fn symmetric_difference(self, other: Self) -> Self
^
) of the bits in two flags values.Source§fn complement(self) -> Self
fn complement(self) -> Self
!
) of the bits in a flags value, truncating the result.Source§impl FromIterator<ResolveFlags> for ResolveFlags
impl FromIterator<ResolveFlags> for ResolveFlags
Source§fn from_iter<T>(iterator: T) -> ResolveFlagswhere
T: IntoIterator<Item = ResolveFlags>,
fn from_iter<T>(iterator: T) -> ResolveFlagswhere
T: IntoIterator<Item = ResolveFlags>,
The bitwise or (|
) of the bits in each flags value.
Source§impl Hash for ResolveFlags
impl Hash for ResolveFlags
Source§impl IntoIterator for ResolveFlags
impl IntoIterator for ResolveFlags
Source§type Item = ResolveFlags
type Item = ResolveFlags
Source§type IntoIter = Iter<ResolveFlags>
type IntoIter = Iter<ResolveFlags>
Source§fn into_iter(self) -> <ResolveFlags as IntoIterator>::IntoIter
fn into_iter(self) -> <ResolveFlags as IntoIterator>::IntoIter
Source§impl LowerHex for ResolveFlags
impl LowerHex for ResolveFlags
Source§impl Not for ResolveFlags
impl Not for ResolveFlags
Source§fn not(self) -> ResolveFlags
fn not(self) -> ResolveFlags
The bitwise negation (!
) of the bits in a flags value, truncating the result.
Source§type Output = ResolveFlags
type Output = ResolveFlags
!
operator.Source§impl Octal for ResolveFlags
impl Octal for ResolveFlags
Source§impl PartialEq for ResolveFlags
impl PartialEq for ResolveFlags
Source§impl Sub for ResolveFlags
impl Sub for ResolveFlags
Source§fn sub(self, other: ResolveFlags) -> ResolveFlags
fn sub(self, other: ResolveFlags) -> ResolveFlags
The intersection of a source flags value with the complement of a target flags value (&!
).
This method is not equivalent to self & !other
when other
has unknown bits set.
difference
won’t truncate other
, but the !
operator will.
Source§type Output = ResolveFlags
type Output = ResolveFlags
-
operator.Source§impl SubAssign for ResolveFlags
impl SubAssign for ResolveFlags
Source§fn sub_assign(&mut self, other: ResolveFlags)
fn sub_assign(&mut self, other: ResolveFlags)
The intersection of a source flags value with the complement of a target flags value (&!
).
This method is not equivalent to self & !other
when other
has unknown bits set.
difference
won’t truncate other
, but the !
operator will.