pub struct Protections(/* private fields */);
Expand description
Mapping protections for mapping objects into the address space.
Implementations§
source§impl Protections
impl Protections
sourcepub const READ: Protections = _
pub const READ: Protections = _
Read allowed.
sourcepub const WRITE: Protections = _
pub const WRITE: Protections = _
Write allowed.
sourcepub const EXEC: Protections = _
pub const EXEC: Protections = _
Exec allowed.
source§impl Protections
impl Protections
sourcepub const fn empty() -> Protections
pub const fn empty() -> Protections
Get a flags value with all bits unset.
sourcepub const fn all() -> Protections
pub const fn all() -> Protections
Get a flags value with all known bits set.
sourcepub const fn bits(&self) -> u32
pub const fn bits(&self) -> u32
Get the underlying bits value.
The returned value is exactly the bits set in this flags value.
sourcepub const fn from_bits(bits: u32) -> Option<Protections>
pub const fn from_bits(bits: u32) -> Option<Protections>
Convert from a bits value.
This method will return None
if any unknown bits are set.
sourcepub const fn from_bits_truncate(bits: u32) -> Protections
pub const fn from_bits_truncate(bits: u32) -> Protections
Convert from a bits value, unsetting any unknown bits.
sourcepub const fn from_bits_retain(bits: u32) -> Protections
pub const fn from_bits_retain(bits: u32) -> Protections
Convert from a bits value exactly.
sourcepub fn from_name(name: &str) -> Option<Protections>
pub fn from_name(name: &str) -> Option<Protections>
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: Protections) -> bool
pub const fn intersects(&self, other: Protections) -> bool
Whether any set bits in a source flags value are also set in a target flags value.
sourcepub const fn contains(&self, other: Protections) -> bool
pub const fn contains(&self, other: Protections) -> bool
Whether all set bits in a source flags value are also set in a target flags value.
sourcepub fn insert(&mut self, other: Protections)
pub fn insert(&mut self, other: Protections)
The bitwise or (|
) of the bits in two flags values.
sourcepub fn remove(&mut self, other: Protections)
pub fn remove(&mut self, other: Protections)
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: Protections)
pub fn toggle(&mut self, other: Protections)
The bitwise exclusive-or (^
) of the bits in two flags values.
sourcepub fn set(&mut self, other: Protections, value: bool)
pub fn set(&mut self, other: Protections, value: bool)
Call insert
when value
is true
or remove
when value
is false
.
sourcepub const fn intersection(self, other: Protections) -> Protections
pub const fn intersection(self, other: Protections) -> Protections
The bitwise and (&
) of the bits in two flags values.
sourcepub const fn union(self, other: Protections) -> Protections
pub const fn union(self, other: Protections) -> Protections
The bitwise or (|
) of the bits in two flags values.
sourcepub const fn difference(self, other: Protections) -> Protections
pub const fn difference(self, other: Protections) -> Protections
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: Protections) -> Protections
pub const fn symmetric_difference(self, other: Protections) -> Protections
The bitwise exclusive-or (^
) of the bits in two flags values.
sourcepub const fn complement(self) -> Protections
pub const fn complement(self) -> Protections
The bitwise negation (!
) of the bits in a flags value, truncating the result.
source§impl Protections
impl Protections
sourcepub const fn iter(&self) -> Iter<Protections>
pub const fn iter(&self) -> Iter<Protections>
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<Protections>
pub const fn iter_names(&self) -> IterNames<Protections>
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 Protections
impl Binary for Protections
source§impl BitAnd for Protections
impl BitAnd for Protections
source§fn bitand(self, other: Protections) -> Protections
fn bitand(self, other: Protections) -> Protections
The bitwise and (&
) of the bits in two flags values.
source§type Output = Protections
type Output = Protections
&
operator.source§impl BitAndAssign for Protections
impl BitAndAssign for Protections
source§fn bitand_assign(&mut self, other: Protections)
fn bitand_assign(&mut self, other: Protections)
The bitwise and (&
) of the bits in two flags values.
source§impl BitOr for Protections
impl BitOr for Protections
source§fn bitor(self, other: Protections) -> Protections
fn bitor(self, other: Protections) -> Protections
The bitwise or (|
) of the bits in two flags values.
source§type Output = Protections
type Output = Protections
|
operator.source§impl BitOrAssign for Protections
impl BitOrAssign for Protections
source§fn bitor_assign(&mut self, other: Protections)
fn bitor_assign(&mut self, other: Protections)
The bitwise or (|
) of the bits in two flags values.
source§impl BitXor for Protections
impl BitXor for Protections
source§fn bitxor(self, other: Protections) -> Protections
fn bitxor(self, other: Protections) -> Protections
The bitwise exclusive-or (^
) of the bits in two flags values.
source§type Output = Protections
type Output = Protections
^
operator.source§impl BitXorAssign for Protections
impl BitXorAssign for Protections
source§fn bitxor_assign(&mut self, other: Protections)
fn bitxor_assign(&mut self, other: Protections)
The bitwise exclusive-or (^
) of the bits in two flags values.
source§impl Clone for Protections
impl Clone for Protections
source§fn clone(&self) -> Protections
fn clone(&self) -> Protections
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for Protections
impl Debug for Protections
source§impl Extend<Protections> for Protections
impl Extend<Protections> for Protections
source§fn extend<T>(&mut self, iterator: T)where
T: IntoIterator<Item = Protections>,
fn extend<T>(&mut self, iterator: T)where
T: IntoIterator<Item = Protections>,
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 Protections
impl Flags for Protections
source§const FLAGS: &'static [Flag<Protections>] = _
const FLAGS: &'static [Flag<Protections>] = _
source§fn from_bits_retain(bits: u32) -> Protections
fn from_bits_retain(bits: u32) -> Protections
§fn from_bits_truncate(bits: Self::Bits) -> Self
fn from_bits_truncate(bits: Self::Bits) -> Self
§fn from_name(name: &str) -> Option<Self>
fn from_name(name: &str) -> Option<Self>
§fn iter_names(&self) -> IterNames<Self>
fn iter_names(&self) -> IterNames<Self>
§fn intersects(&self, other: Self) -> boolwhere
Self: Sized,
fn intersects(&self, other: Self) -> boolwhere
Self: Sized,
§fn contains(&self, other: Self) -> boolwhere
Self: Sized,
fn contains(&self, other: Self) -> boolwhere
Self: Sized,
§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.§fn remove(&mut self, other: Self)where
Self: Sized,
fn remove(&mut self, other: Self)where
Self: Sized,
&!
). Read more§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.§fn set(&mut self, other: Self, value: bool)where
Self: Sized,
fn set(&mut self, other: Self, value: bool)where
Self: Sized,
Flags::insert
] when value
is true
or [Flags::remove
] when value
is false
.§fn intersection(self, other: Self) -> Self
fn intersection(self, other: Self) -> Self
&
) of the bits in two flags values.§fn difference(self, other: Self) -> Self
fn difference(self, other: Self) -> Self
&!
). Read more§fn symmetric_difference(self, other: Self) -> Self
fn symmetric_difference(self, other: Self) -> Self
^
) of the bits in two flags values.§fn complement(self) -> Self
fn complement(self) -> Self
!
) of the bits in a flags value, truncating the result.source§impl From<MapFlags> for Protections
impl From<MapFlags> for Protections
source§fn from(value: MapFlags) -> Protections
fn from(value: MapFlags) -> Protections
source§impl FromIterator<Protections> for Protections
impl FromIterator<Protections> for Protections
source§fn from_iter<T>(iterator: T) -> Protectionswhere
T: IntoIterator<Item = Protections>,
fn from_iter<T>(iterator: T) -> Protectionswhere
T: IntoIterator<Item = Protections>,
The bitwise or (|
) of the bits in each flags value.
source§impl Hash for Protections
impl Hash for Protections
source§impl IntoIterator for Protections
impl IntoIterator for Protections
source§type Item = Protections
type Item = Protections
source§type IntoIter = Iter<Protections>
type IntoIter = Iter<Protections>
source§fn into_iter(self) -> <Protections as IntoIterator>::IntoIter
fn into_iter(self) -> <Protections as IntoIterator>::IntoIter
source§impl LowerHex for Protections
impl LowerHex for Protections
source§impl Not for Protections
impl Not for Protections
source§fn not(self) -> Protections
fn not(self) -> Protections
The bitwise negation (!
) of the bits in a flags value, truncating the result.
source§type Output = Protections
type Output = Protections
!
operator.source§impl Octal for Protections
impl Octal for Protections
source§impl Ord for Protections
impl Ord for Protections
source§fn cmp(&self, other: &Protections) -> Ordering
fn cmp(&self, other: &Protections) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
source§impl PartialEq for Protections
impl PartialEq for Protections
source§impl PartialOrd for Protections
impl PartialOrd for Protections
source§impl Sub for Protections
impl Sub for Protections
source§fn sub(self, other: Protections) -> Protections
fn sub(self, other: Protections) -> Protections
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 = Protections
type Output = Protections
-
operator.source§impl SubAssign for Protections
impl SubAssign for Protections
source§fn sub_assign(&mut self, other: Protections)
fn sub_assign(&mut self, other: Protections)
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§impl UpperHex for Protections
impl UpperHex for Protections
impl Copy for Protections
impl Eq for Protections
impl StructuralPartialEq for Protections
Auto Trait Implementations§
impl Freeze for Protections
impl ObjSafe for Protections
impl RefUnwindSafe for Protections
impl Send for Protections
impl Sync for Protections
impl Unpin for Protections
impl UnwindSafe for Protections
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.