Struct rustix_uring::types::OFlags
source · pub struct OFlags { /* private fields */ }
Expand description
O_*
constants for use with openat
.
Implementations§
source§impl OFlags
impl OFlags
sourcepub const RWMODE: OFlags = Self{
bits:
linux_raw_sys::general::O_RDONLY | linux_raw_sys::general::O_WRONLY |
linux_raw_sys::general::O_RDWR,}
pub const RWMODE: OFlags = Self{ bits: linux_raw_sys::general::O_RDONLY | linux_raw_sys::general::O_WRONLY | linux_raw_sys::general::O_RDWR,}
Similar to ACCMODE
, but just includes the read/write flags, and
no other flags.
Some implementations include O_PATH
in O_ACCMODE
, when
sometimes we really just want the read/write bits. Caution is
indicated, as the presence of O_PATH
may mean that the read/write
bits don’t have their usual meaning.
sourcepub const DSYNC: OFlags = Self{ bits: linux_raw_sys::general::O_SYNC,}
pub const DSYNC: OFlags = Self{ bits: linux_raw_sys::general::O_SYNC,}
O_DSYNC
. Linux 2.6.32 only supports O_SYNC
.
sourcepub const FSYNC: OFlags = Self{ bits: linux_raw_sys::general::O_SYNC,}
pub const FSYNC: OFlags = Self{ bits: linux_raw_sys::general::O_SYNC,}
O_FSYNC
. Linux 2.6.32 only supports O_SYNC
.
sourcepub const RSYNC: OFlags = Self{ bits: linux_raw_sys::general::O_SYNC,}
pub const RSYNC: OFlags = Self{ bits: linux_raw_sys::general::O_SYNC,}
O_RSYNC
. Linux 2.6.32 only supports O_SYNC
.
sourcepub const fn from_bits(bits: u32) -> Option<OFlags>
pub const fn from_bits(bits: u32) -> Option<OFlags>
Convert from underlying bit representation, unless that representation contains bits that do not correspond to a flag.
sourcepub const fn from_bits_truncate(bits: u32) -> OFlags
pub const fn from_bits_truncate(bits: u32) -> OFlags
Convert from underlying bit representation, dropping any bits that do not correspond to flags.
sourcepub const unsafe fn from_bits_unchecked(bits: u32) -> OFlags
pub const unsafe fn from_bits_unchecked(bits: u32) -> OFlags
Convert from underlying bit representation, preserving all bits (even those not corresponding to a defined flag).
Safety
The caller of the bitflags!
macro can chose to allow or
disallow extra bits for their bitflags type.
The caller of from_bits_unchecked()
has to ensure that
all bits correspond to a defined flag or that extra bits
are valid for this bitflags type.
sourcepub const fn intersects(&self, other: OFlags) -> bool
pub const fn intersects(&self, other: OFlags) -> bool
Returns true
if there are flags common to both self
and other
.
sourcepub const fn contains(&self, other: OFlags) -> bool
pub const fn contains(&self, other: OFlags) -> bool
Returns true
if all of the flags in other
are contained within self
.
sourcepub fn set(&mut self, other: OFlags, value: bool)
pub fn set(&mut self, other: OFlags, value: bool)
Inserts or removes the specified flags depending on the passed value.
sourcepub const fn intersection(self, other: OFlags) -> OFlags
pub const fn intersection(self, other: OFlags) -> OFlags
Returns the intersection between the flags in self
and
other
.
Specifically, the returned set contains only the flags which are
present in both self
and other
.
This is equivalent to using the &
operator (e.g.
ops::BitAnd
), as in flags & other
.
sourcepub const fn union(self, other: OFlags) -> OFlags
pub const fn union(self, other: OFlags) -> OFlags
Returns the union of between the flags in self
and other
.
Specifically, the returned set contains all flags which are
present in either self
or other
, including any which are
present in both (see Self::symmetric_difference
if that
is undesirable).
This is equivalent to using the |
operator (e.g.
ops::BitOr
), as in flags | other
.
sourcepub const fn difference(self, other: OFlags) -> OFlags
pub const fn difference(self, other: OFlags) -> OFlags
Returns the difference between the flags in self
and other
.
Specifically, the returned set contains all flags present in
self
, except for the ones present in other
.
It is also conceptually equivalent to the “bit-clear” operation:
flags & !other
(and this syntax is also supported).
This is equivalent to using the -
operator (e.g.
ops::Sub
), as in flags - other
.
sourcepub const fn symmetric_difference(self, other: OFlags) -> OFlags
pub const fn symmetric_difference(self, other: OFlags) -> OFlags
Returns the symmetric difference between the flags
in self
and other
.
Specifically, the returned set contains the flags present which
are present in self
or other
, but that are not present in
both. Equivalently, it contains the flags present in exactly
one of the sets self
and other
.
This is equivalent to using the ^
operator (e.g.
ops::BitXor
), as in flags ^ other
.
sourcepub const fn complement(self) -> OFlags
pub const fn complement(self) -> OFlags
Returns the complement of this set of flags.
Specifically, the returned set contains all the flags which are
not set in self
, but which are allowed for this type.
Alternatively, it can be thought of as the set difference
between Self::all()
and self
(e.g. Self::all() - self
)
This is equivalent to using the !
operator (e.g.
ops::Not
), as in !flags
.
Trait Implementations§
source§impl BitAndAssign<OFlags> for OFlags
impl BitAndAssign<OFlags> for OFlags
source§fn bitand_assign(&mut self, other: OFlags)
fn bitand_assign(&mut self, other: OFlags)
Disables all flags disabled in the set.
source§impl BitOrAssign<OFlags> for OFlags
impl BitOrAssign<OFlags> for OFlags
source§fn bitor_assign(&mut self, other: OFlags)
fn bitor_assign(&mut self, other: OFlags)
Adds the set of flags.
source§impl BitXorAssign<OFlags> for OFlags
impl BitXorAssign<OFlags> for OFlags
source§fn bitxor_assign(&mut self, other: OFlags)
fn bitxor_assign(&mut self, other: OFlags)
Toggles the set of flags.
source§impl Extend<OFlags> for OFlags
impl Extend<OFlags> for OFlags
source§fn extend<T>(&mut self, iterator: T)where
T: IntoIterator<Item = OFlags>,
fn extend<T>(&mut self, iterator: T)where T: IntoIterator<Item = OFlags>,
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 FromIterator<OFlags> for OFlags
impl FromIterator<OFlags> for OFlags
source§impl Ord for OFlags
impl Ord for OFlags
source§impl PartialEq<OFlags> for OFlags
impl PartialEq<OFlags> for OFlags
source§impl PartialOrd<OFlags> for OFlags
impl PartialOrd<OFlags> for OFlags
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read moresource§impl SubAssign<OFlags> for OFlags
impl SubAssign<OFlags> for OFlags
source§fn sub_assign(&mut self, other: OFlags)
fn sub_assign(&mut self, other: OFlags)
Disables all flags enabled in the set.