[−][src]Struct sunrise_libuser::syscalls::MemoryPermissions
Memory permissions of a memory area.
Fields
bits: u32
Implementations
impl MemoryPermissions
[src]
pub fn check(self) -> Result<(), KernelError>
[src]
Checks that the permissions as valid - that is, it should be one of ---, R--, RW- or R-X.
impl MemoryPermissions
[src]
pub const READABLE: MemoryPermissions
[src]
The area is readable.
pub const WRITABLE: MemoryPermissions
[src]
The area is writable.
pub const EXECUTABLE: MemoryPermissions
[src]
The area is executable.
pub const RO: MemoryPermissions
[src]
The area is ReadOnly.
pub const RW: MemoryPermissions
[src]
The area is RW.
pub const RX: MemoryPermissions
[src]
The area is RX.
pub fn empty() -> MemoryPermissions
[src]
Returns an empty set of flags
pub fn all() -> MemoryPermissions
[src]
Returns the set containing all flags.
pub fn bits(&self) -> u32
[src]
Returns the raw value of the flags currently stored.
pub fn from_bits(bits: u32) -> Option<MemoryPermissions>
[src]
Convert from underlying bit representation, unless that representation contains bits that do not correspond to a flag.
pub fn from_bits_truncate(bits: u32) -> MemoryPermissions
[src]
Convert from underlying bit representation, dropping any bits that do not correspond to flags.
pub fn is_empty(&self) -> bool
[src]
Returns true
if no flags are currently stored.
pub fn is_all(&self) -> bool
[src]
Returns true
if all flags are currently set.
pub fn intersects(&self, other: MemoryPermissions) -> bool
[src]
Returns true
if there are flags common to both self
and other
.
pub fn contains(&self, other: MemoryPermissions) -> bool
[src]
Returns true
all of the flags in other
are contained within self
.
pub fn insert(&mut self, other: MemoryPermissions)
[src]
Inserts the specified flags in-place.
pub fn remove(&mut self, other: MemoryPermissions)
[src]
Removes the specified flags in-place.
pub fn toggle(&mut self, other: MemoryPermissions)
[src]
Toggles the specified flags in-place.
pub fn set(&mut self, other: MemoryPermissions, value: bool)
[src]
Inserts or removes the specified flags depending on the passed value.
Trait Implementations
impl Binary for MemoryPermissions
[src]
impl BitAnd<MemoryPermissions> for MemoryPermissions
[src]
type Output = MemoryPermissions
The resulting type after applying the &
operator.
fn bitand(self, other: MemoryPermissions) -> MemoryPermissions
[src]
Returns the intersection between the two sets of flags.
impl BitAndAssign<MemoryPermissions> for MemoryPermissions
[src]
fn bitand_assign(&mut self, other: MemoryPermissions)
[src]
Disables all flags disabled in the set.
impl BitOr<MemoryPermissions> for MemoryPermissions
[src]
type Output = MemoryPermissions
The resulting type after applying the |
operator.
fn bitor(self, other: MemoryPermissions) -> MemoryPermissions
[src]
Returns the union of the two sets of flags.
impl BitOrAssign<MemoryPermissions> for MemoryPermissions
[src]
fn bitor_assign(&mut self, other: MemoryPermissions)
[src]
Adds the set of flags.
impl BitXor<MemoryPermissions> for MemoryPermissions
[src]
type Output = MemoryPermissions
The resulting type after applying the ^
operator.
fn bitxor(self, other: MemoryPermissions) -> MemoryPermissions
[src]
Returns the left flags, but with all the right flags toggled.
impl BitXorAssign<MemoryPermissions> for MemoryPermissions
[src]
fn bitxor_assign(&mut self, other: MemoryPermissions)
[src]
Toggles the set of flags.
impl Clone for MemoryPermissions
[src]
fn clone(&self) -> MemoryPermissions
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Copy for MemoryPermissions
[src]
impl Debug for MemoryPermissions
[src]
impl Default for MemoryPermissions
[src]
fn default() -> MemoryPermissions
[src]
impl Eq for MemoryPermissions
[src]
impl Extend<MemoryPermissions> for MemoryPermissions
[src]
fn extend<T>(&mut self, iterator: T) where
T: IntoIterator<Item = MemoryPermissions>,
[src]
T: IntoIterator<Item = MemoryPermissions>,
impl FromIterator<MemoryPermissions> for MemoryPermissions
[src]
fn from_iter<T>(iterator: T) -> MemoryPermissions where
T: IntoIterator<Item = MemoryPermissions>,
[src]
T: IntoIterator<Item = MemoryPermissions>,
impl Hash for MemoryPermissions
[src]
fn hash<__H>(&self, state: &mut __H) where
__H: Hasher,
[src]
__H: Hasher,
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
H: Hasher,
impl LowerHex for MemoryPermissions
[src]
impl Not for MemoryPermissions
[src]
type Output = MemoryPermissions
The resulting type after applying the !
operator.
fn not(self) -> MemoryPermissions
[src]
Returns the complement of this set of flags.
impl Octal for MemoryPermissions
[src]
impl Ord for MemoryPermissions
[src]
fn cmp(&self, other: &MemoryPermissions) -> Ordering
[src]
#[must_use]fn max(self, other: Self) -> Self
1.21.0[src]
#[must_use]fn min(self, other: Self) -> Self
1.21.0[src]
#[must_use]fn clamp(self, min: Self, max: Self) -> Self
[src]
impl PartialEq<MemoryPermissions> for MemoryPermissions
[src]
fn eq(&self, other: &MemoryPermissions) -> bool
[src]
fn ne(&self, other: &MemoryPermissions) -> bool
[src]
impl PartialOrd<MemoryPermissions> for MemoryPermissions
[src]
fn partial_cmp(&self, other: &MemoryPermissions) -> Option<Ordering>
[src]
fn lt(&self, other: &MemoryPermissions) -> bool
[src]
fn le(&self, other: &MemoryPermissions) -> bool
[src]
fn gt(&self, other: &MemoryPermissions) -> bool
[src]
fn ge(&self, other: &MemoryPermissions) -> bool
[src]
impl StructuralEq for MemoryPermissions
[src]
impl StructuralPartialEq for MemoryPermissions
[src]
impl Sub<MemoryPermissions> for MemoryPermissions
[src]
type Output = MemoryPermissions
The resulting type after applying the -
operator.
fn sub(self, other: MemoryPermissions) -> MemoryPermissions
[src]
Returns the set difference of the two sets of flags.
impl SubAssign<MemoryPermissions> for MemoryPermissions
[src]
fn sub_assign(&mut self, other: MemoryPermissions)
[src]
Disables all flags enabled in the set.
impl UpperHex for MemoryPermissions
[src]
Auto Trait Implementations
impl RefUnwindSafe for MemoryPermissions
impl Send for MemoryPermissions
impl Sync for MemoryPermissions
impl Unpin for MemoryPermissions
impl UnwindSafe for MemoryPermissions
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> SizedIPCBuffer for T
[src]
fn size(&Self) -> usize
[src]
fn is_cool(usize, usize) -> bool
[src]
unsafe fn from_raw_parts<'a>(usize, usize) -> &'a T
[src]
unsafe fn from_raw_parts_mut<'a>(usize, usize) -> &'a mut T
[src]
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,