#[repr(transparent)]pub struct PAddr(pub u64);
Expand description
A wrapper for a physical address.
Tuple Fields§
§0: u64
Implementations§
Source§impl PAddr
impl PAddr
Sourcepub fn base_page_offset(self) -> u64
pub fn base_page_offset(self) -> u64
Offset within the 4 KiB page.
Sourcepub fn large_page_offset(self) -> u64
pub fn large_page_offset(self) -> u64
Offset within the 2 MiB page.
Sourcepub fn huge_page_offset(self) -> u64
pub fn huge_page_offset(self) -> u64
Offset within the 1 GiB page.
Sourcepub fn align_down_to_base_page(self) -> Self
pub fn align_down_to_base_page(self) -> Self
Return address of nearest 4 KiB page (lower or equal than self).
Sourcepub fn align_down_to_large_page(self) -> Self
pub fn align_down_to_large_page(self) -> Self
Return address of nearest 2 MiB page (lower or equal than self).
Sourcepub fn align_down_to_huge_page(self) -> Self
pub fn align_down_to_huge_page(self) -> Self
Return address of nearest 1 GiB page (lower or equal than self).
Sourcepub fn align_up_to_base_page(self) -> Self
pub fn align_up_to_base_page(self) -> Self
Return address of nearest 4 KiB page (higher or equal than self).
Sourcepub fn align_up_to_large_page(self) -> Self
pub fn align_up_to_large_page(self) -> Self
Return address of nearest 2 MiB page (higher or equal than self).
Sourcepub fn align_up_to_huge_page(self) -> Self
pub fn align_up_to_huge_page(self) -> Self
Return address of nearest 1 GiB page (higher or equal than self).
Sourcepub fn is_base_page_aligned(self) -> bool
pub fn is_base_page_aligned(self) -> bool
Is this address aligned to a 4 KiB page?
Sourcepub fn is_large_page_aligned(self) -> bool
pub fn is_large_page_aligned(self) -> bool
Is this address aligned to a 2 MiB page?
Sourcepub fn is_huge_page_aligned(self) -> bool
pub fn is_huge_page_aligned(self) -> bool
Is this address aligned to a 1 GiB page?
Trait Implementations§
Source§impl AddAssign<u64> for PAddr
impl AddAssign<u64> for PAddr
Source§fn add_assign(&mut self, offset: u64)
fn add_assign(&mut self, offset: u64)
Performs the
+=
operation. Read moreSource§impl AddAssign for PAddr
impl AddAssign for PAddr
Source§fn add_assign(&mut self, other: PAddr)
fn add_assign(&mut self, other: PAddr)
Performs the
+=
operation. Read moreSource§impl Ord for PAddr
impl Ord for PAddr
Source§impl PartialOrd for PAddr
impl PartialOrd for PAddr
impl Copy for PAddr
impl Eq for PAddr
impl StructuralPartialEq for PAddr
Auto Trait Implementations§
impl Freeze for PAddr
impl RefUnwindSafe for PAddr
impl Send for PAddr
impl Sync for PAddr
impl Unpin for PAddr
impl UnwindSafe for PAddr
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
Mutably borrows from an owned value. Read more