[−][src]Struct hermit::mm::PhysAddr
A wrapper for a physical address.
Implementations
impl PAddr[src]
pub fn as_u64(self) -> u64[src]
Convert to u64
pub fn as_usize(self) -> usize[src]
Convert to usize
pub fn zero() -> PAddr[src]
Physical Address zero.
pub fn is_zero(self) -> bool[src]
Is zero?
pub fn base_page_offset(self) -> u64[src]
Offset within the 4 KiB page.
pub fn large_page_offset(self) -> u64[src]
Offset within the 2 MiB page.
pub fn huge_page_offset(self) -> u64[src]
Offset within the 1 GiB page.
pub fn align_down_to_base_page(self) -> PAddr[src]
Return address of nearest 4 KiB page (lower or equal than self).
pub fn align_down_to_large_page(self) -> PAddr[src]
Return address of nearest 2 MiB page (lower or equal than self).
pub fn align_down_to_huge_page(self) -> PAddr[src]
Return address of nearest 1 GiB page (lower or equal than self).
pub fn align_up_to_base_page(self) -> PAddr[src]
Return address of nearest 4 KiB page (higher or equal than self).
pub fn align_up_to_large_page(self) -> PAddr[src]
Return address of nearest 2 MiB page (higher or equal than self).
pub fn align_up_to_huge_page(self) -> PAddr[src]
Return address of nearest 1 GiB page (higher or equal than self).
pub fn is_base_page_aligned(self) -> bool[src]
Is this address aligned to a 4 KiB page?
pub fn is_large_page_aligned(self) -> bool[src]
Is this address aligned to a 2 MiB page?
pub fn is_huge_page_aligned(self) -> bool[src]
Is this address aligned to a 1 GiB page?
pub fn is_aligned<U>(self, align: U) -> bool where
U: Into<u64> + Copy, [src]
U: Into<u64> + Copy,
Trait Implementations
impl Add<PAddr> for PAddr[src]
type Output = PAddr
The resulting type after applying the + operator.
fn add(self, rhs: PAddr) -> <PAddr as Add<PAddr>>::Output[src]
impl Add<u64> for PAddr[src]
type Output = PAddr
The resulting type after applying the + operator.
fn add(self, rhs: u64) -> <PAddr as Add<u64>>::Output[src]
impl Add<usize> for PAddr[src]
type Output = PAddr
The resulting type after applying the + operator.
fn add(self, rhs: usize) -> <PAddr as Add<usize>>::Output[src]
impl AddAssign<PAddr> for PAddr[src]
fn add_assign(&mut self, other: PAddr)[src]
impl AddAssign<u64> for PAddr[src]
fn add_assign(&mut self, offset: u64)[src]
impl Binary for PAddr[src]
impl BitAnd<PAddr> for PAddr[src]
type Output = PAddr
The resulting type after applying the & operator.
fn bitand(self, rhs: PAddr) -> PAddr[src]
impl BitAnd<u64> for PAddr[src]
type Output = u64
The resulting type after applying the & operator.
fn bitand(self, rhs: u64) -> <PAddr as BitAnd<u64>>::Output[src]
impl BitOr<PAddr> for PAddr[src]
type Output = PAddr
The resulting type after applying the | operator.
fn bitor(self, rhs: PAddr) -> <PAddr as BitOr<PAddr>>::Output[src]
impl BitOr<u64> for PAddr[src]
type Output = u64
The resulting type after applying the | operator.
fn bitor(self, rhs: u64) -> <PAddr as BitOr<u64>>::Output[src]
impl Clone for PAddr[src]
impl Copy for PAddr[src]
impl Debug for PAddr[src]
impl Display for PAddr[src]
impl Eq for PAddr[src]
impl From<i32> for PAddr[src]
impl From<u64> for PAddr[src]
impl From<usize> for PAddr[src]
impl Hash for PAddr[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 Into<u64> for PAddr[src]
impl Into<usize> for PAddr[src]
impl LowerHex for PAddr[src]
impl Octal for PAddr[src]
impl Ord for PAddr[src]
fn cmp(&self, other: &PAddr) -> Ordering[src]
#[must_use]fn max(self, other: Self) -> Self1.21.0[src]
#[must_use]fn min(self, other: Self) -> Self1.21.0[src]
#[must_use]fn clamp(self, min: Self, max: Self) -> Self[src]
impl PartialEq<PAddr> for PAddr[src]
impl PartialOrd<PAddr> for PAddr[src]
fn partial_cmp(&self, other: &PAddr) -> Option<Ordering>[src]
fn lt(&self, other: &PAddr) -> bool[src]
fn le(&self, other: &PAddr) -> bool[src]
fn gt(&self, other: &PAddr) -> bool[src]
fn ge(&self, other: &PAddr) -> bool[src]
impl Pointer for PAddr[src]
impl Rem<PAddr> for PAddr[src]
type Output = PAddr
The resulting type after applying the % operator.
fn rem(self, rhs: PAddr) -> <PAddr as Rem<PAddr>>::Output[src]
impl Rem<u64> for PAddr[src]
type Output = u64
The resulting type after applying the % operator.
fn rem(self, rhs: u64) -> <PAddr as Rem<u64>>::Output[src]
impl Rem<usize> for PAddr[src]
type Output = u64
The resulting type after applying the % operator.
fn rem(self, rhs: usize) -> <PAddr as Rem<usize>>::Output[src]
impl Shr<u64> for PAddr[src]
type Output = u64
The resulting type after applying the >> operator.
fn shr(self, rhs: u64) -> <PAddr as Shr<u64>>::Output[src]
impl StructuralEq for PAddr[src]
impl StructuralPartialEq for PAddr[src]
impl Sub<PAddr> for PAddr[src]
type Output = PAddr
The resulting type after applying the - operator.
fn sub(self, rhs: PAddr) -> <PAddr as Sub<PAddr>>::Output[src]
impl Sub<u64> for PAddr[src]
type Output = PAddr
The resulting type after applying the - operator.
fn sub(self, rhs: u64) -> <PAddr as Sub<u64>>::Output[src]
impl Sub<usize> for PAddr[src]
type Output = PAddr
The resulting type after applying the - operator.
fn sub(self, rhs: usize) -> <PAddr as Sub<usize>>::Output[src]
impl UpperHex for PAddr[src]
Auto Trait Implementations
impl RefUnwindSafe for PAddr
impl Send for PAddr
impl Sync for PAddr
impl Unpin for PAddr
impl UnwindSafe for PAddr
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> 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> ToString for T where
T: Display + ?Sized, [src]
T: Display + ?Sized,
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>,