Skip to main content

AccessPerms

Enum AccessPerms 

Source
pub enum AccessPerms {
    NoAccess,
    ReadOnly,
    ReadWrite,
    PrivReadOnly,
    PrivReadWrite,
    PrivReadWriteUserReadOnly,
}
Expand description

Describes the access permissions of a memory region

Access permission bits control read and write access to the corresponding memory region. Permissions are specified for priviledged accesses (PL1) and for user accesses (PL0). Accesses to a memory region without the required permissions generate a Permission fault.

Note that the execute-never (XN) attribute provides an additional permission check on memory regions, see Region::no_exec.

Variants§

§

NoAccess

All accesses generate a Permission fault

  • PL1: No access
  • PL0: No access
§

ReadOnly

All write accesses generate Permission faults

  • PL1: Read-only
  • PL0: Read-only
§

ReadWrite

Full access

  • PL1: Read/Write
  • PL0: Read/Write
§

PrivReadOnly

PL1 read-only, all other accesses generate Permission faults

  • PL1: Read-only
  • PL0: No access
§

PrivReadWrite

All unprivileged accesses generate Permission faults

  • PL1: Read/Write
  • PL0: No access
§

PrivReadWriteUserReadOnly

User mode write accesses generate Permission faults

  • PL1: Read/Write
  • PL0: Read-only

Implementations§

Source§

impl AccessPerms

Source

pub const fn to_bits(&self) -> u3

Convert these access permissions to a 3-bit value we can write to RACR

Trait Implementations§

Source§

impl Clone for AccessPerms

Source§

fn clone(&self) -> AccessPerms

Returns a duplicate of the value. Read more
1.0.0 (const: unstable)§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for AccessPerms

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Eq for AccessPerms

Source§

impl PartialEq for AccessPerms

Source§

fn eq(&self, other: &AccessPerms) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable)§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl StructuralPartialEq for AccessPerms

Auto Trait Implementations§

§

impl Freeze for AccessPerms

§

impl RefUnwindSafe for AccessPerms

§

impl Send for AccessPerms

§

impl Sync for AccessPerms

§

impl Unpin for AccessPerms

§

impl UnsafeUnpin for AccessPerms

§

impl UnwindSafe for AccessPerms

Blanket Implementations§

§

impl<T> Any for T
where T: 'static + ?Sized,

§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

impl<T> Borrow<T> for T
where T: ?Sized,

§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
§

impl<T> BorrowMut<T> for T
where T: ?Sized,

§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<T> CloneToUninit for T
where T: Clone,

§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
§

impl<T> From<T> for T

§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T, U> Into<U> for T
where U: From<T>,

§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of [From]<T> for U chooses to do.

§

impl<T, U> TryFrom<U> for T
where 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>

Performs the conversion.
§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.