Skip to main content

A32PTE

Struct A32PTE 

Source
pub struct A32PTE(/* private fields */);
Available on ARM only.
Expand description

An ARMv7-A Short-descriptor page table entry (32-bit).

This can represent:

  • L1 Section descriptor (1MB mapping)
  • L1 Page Table descriptor (points to L2 table)
  • L2 Small Page descriptor (4KB mapping)

Implementations§

Source§

impl A32PTE

Source

pub const fn empty() -> Self

Creates an empty descriptor with all bits set to zero.

Source

pub const fn new_section(paddr: PhysAddr, flags: MappingFlags) -> Self

Creates a Section descriptor (1MB block).

Source

pub const fn new_small_page(paddr: PhysAddr, flags: MappingFlags) -> Self

Creates a Small Page descriptor (4KB page).

Source

pub const fn descriptor_type(&self) -> u32

Returns the descriptor type field.

Source

pub const fn is_section(&self) -> bool

Checks if this is a Section descriptor.

Trait Implementations§

Source§

impl Clone for A32PTE

Source§

fn clone(&self) -> A32PTE

Returns a duplicate of the value. Read more
1.0.0 · Source§

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

Performs copy-assignment from source. Read more
Source§

impl Debug for A32PTE

Source§

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

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

impl GenericPTE for A32PTE

Source§

fn new_page(paddr: PhysAddr, flags: MappingFlags, is_huge: bool) -> Self

Creates a page table entry point to a terminate page or block.
Source§

fn new_table(paddr: PhysAddr) -> Self

Creates a page table entry point to a next level page table.
Source§

fn paddr(&self) -> PhysAddr

Returns the physical address mapped by this entry.
Source§

fn flags(&self) -> MappingFlags

Returns the flags of this entry.
Source§

fn set_paddr(&mut self, paddr: PhysAddr)

Set mapped physical address of the entry.
Source§

fn set_flags(&mut self, flags: MappingFlags, is_huge: bool)

Set flags of the entry.
Source§

fn bits(self) -> usize

Returns the raw bits of this entry.
Source§

fn is_unused(&self) -> bool

Returns whether this entry is zero.
Source§

fn is_present(&self) -> bool

Returns whether this entry flag indicates present.
Source§

fn is_huge(&self) -> bool

For non-last level translation, returns whether this entry maps to a huge frame.
Source§

fn clear(&mut self)

Set this entry to zero.
Source§

impl Copy for A32PTE

Auto Trait Implementations§

§

impl Freeze for A32PTE

§

impl RefUnwindSafe for A32PTE

§

impl Send for A32PTE

§

impl Sync for A32PTE

§

impl Unpin for A32PTE

§

impl UnwindSafe for A32PTE

Blanket Implementations§

Source§

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

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

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

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

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

Source§

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

Mutably borrows from an owned value. Read more
Source§

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

Source§

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
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

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

Source§

fn into(self) -> U

Calls U::from(self).

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

Source§

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

Source§

type Error = Infallible

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

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

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

Source§

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

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

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

Performs the conversion.