Struct hermit::mm::PhysAddr[][src]

#[repr(transparent)]
pub struct PhysAddr(pub u64);
Expand description

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 const fn zero() -> PAddr[src]

Physical Address zero.

pub fn is_zero(self) -> bool[src]

Is zero?

pub fn split(&self) -> (u32, u32)[src]

Split PAddr into lower and higher 32-bits.

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]

Is this address aligned to align?

Note

align must be a power of two.

Trait Implementations

impl Add<PAddr> for PAddr[src]

type Output = PAddr

The resulting type after applying the + operator.

pub fn add(self, rhs: PAddr) -> <PAddr as Add<PAddr>>::Output[src]

Performs the + operation. Read more

impl Add<u64> for PAddr[src]

type Output = PAddr

The resulting type after applying the + operator.

pub fn add(self, rhs: u64) -> <PAddr as Add<u64>>::Output[src]

Performs the + operation. Read more

impl Add<usize> for PAddr[src]

type Output = PAddr

The resulting type after applying the + operator.

pub fn add(self, rhs: usize) -> <PAddr as Add<usize>>::Output[src]

Performs the + operation. Read more

impl AddAssign<PAddr> for PAddr[src]

pub fn add_assign(&mut self, other: PAddr)[src]

Performs the += operation. Read more

impl AddAssign<u64> for PAddr[src]

pub fn add_assign(&mut self, offset: u64)[src]

Performs the += operation. Read more

impl Binary for PAddr[src]

pub fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>[src]

Formats the value using the given formatter.

impl BitAnd<PAddr> for PAddr[src]

type Output = PAddr

The resulting type after applying the & operator.

pub fn bitand(self, rhs: PAddr) -> PAddr[src]

Performs the & operation. Read more

impl BitAnd<u64> for PAddr[src]

type Output = u64

The resulting type after applying the & operator.

pub fn bitand(self, rhs: u64) -> <PAddr as BitAnd<u64>>::Output[src]

Performs the & operation. Read more

impl BitOr<PAddr> for PAddr[src]

type Output = PAddr

The resulting type after applying the | operator.

pub fn bitor(self, rhs: PAddr) -> <PAddr as BitOr<PAddr>>::Output[src]

Performs the | operation. Read more

impl BitOr<u64> for PAddr[src]

type Output = u64

The resulting type after applying the | operator.

pub fn bitor(self, rhs: u64) -> <PAddr as BitOr<u64>>::Output[src]

Performs the | operation. Read more

impl Clone for PAddr[src]

pub fn clone(&self) -> PAddr[src]

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for PAddr[src]

pub fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>[src]

Formats the value using the given formatter. Read more

impl Display for PAddr[src]

pub fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>[src]

Formats the value using the given formatter. Read more

impl From<i32> for PAddr[src]

pub fn from(num: i32) -> PAddr[src]

Performs the conversion.

impl From<u64> for PAddr[src]

pub fn from(num: u64) -> PAddr[src]

Performs the conversion.

impl From<usize> for PAddr[src]

pub fn from(num: usize) -> PAddr[src]

Performs the conversion.

impl Hash for PAddr[src]

pub fn hash<H>(&self, state: &mut H) where
    H: Hasher
[src]

Feeds this value into the given Hasher. Read more

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

Feeds a slice of this type into the given Hasher. Read more

impl Into<u64> for PAddr[src]

pub fn into(self) -> u64[src]

Performs the conversion.

impl Into<usize> for PAddr[src]

pub fn into(self) -> usize[src]

Performs the conversion.

impl LowerHex for PAddr[src]

pub fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>[src]

Formats the value using the given formatter.

impl Octal for PAddr[src]

pub fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>[src]

Formats the value using the given formatter.

impl Ord for PAddr[src]

pub fn cmp(&self, other: &PAddr) -> Ordering[src]

This method returns an Ordering between self and other. Read more

#[must_use]
fn max(self, other: Self) -> Self
1.21.0[src]

Compares and returns the maximum of two values. Read more

#[must_use]
fn min(self, other: Self) -> Self
1.21.0[src]

Compares and returns the minimum of two values. Read more

#[must_use]
fn clamp(self, min: Self, max: Self) -> Self
1.50.0[src]

Restrict a value to a certain interval. Read more

impl PartialEq<PAddr> for PAddr[src]

pub fn eq(&self, other: &PAddr) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

pub fn ne(&self, other: &PAddr) -> bool[src]

This method tests for !=.

impl PartialOrd<PAddr> for PAddr[src]

pub fn partial_cmp(&self, other: &PAddr) -> Option<Ordering>[src]

This method returns an ordering between self and other values if one exists. Read more

#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than (for self and other) and is used by the < operator. Read more

#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl Pointer for PAddr[src]

pub fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>[src]

Formats the value using the given formatter.

impl Rem<PAddr> for PAddr[src]

type Output = PAddr

The resulting type after applying the % operator.

pub fn rem(self, rhs: PAddr) -> <PAddr as Rem<PAddr>>::Output[src]

Performs the % operation. Read more

impl Rem<u64> for PAddr[src]

type Output = u64

The resulting type after applying the % operator.

pub fn rem(self, rhs: u64) -> <PAddr as Rem<u64>>::Output[src]

Performs the % operation. Read more

impl Rem<usize> for PAddr[src]

type Output = u64

The resulting type after applying the % operator.

pub fn rem(self, rhs: usize) -> <PAddr as Rem<usize>>::Output[src]

Performs the % operation. Read more

impl Shr<u64> for PAddr[src]

type Output = u64

The resulting type after applying the >> operator.

pub fn shr(self, rhs: u64) -> <PAddr as Shr<u64>>::Output[src]

Performs the >> operation. Read more

impl Sub<PAddr> for PAddr[src]

type Output = PAddr

The resulting type after applying the - operator.

pub fn sub(self, rhs: PAddr) -> <PAddr as Sub<PAddr>>::Output[src]

Performs the - operation. Read more

impl Sub<u64> for PAddr[src]

type Output = PAddr

The resulting type after applying the - operator.

pub fn sub(self, rhs: u64) -> <PAddr as Sub<u64>>::Output[src]

Performs the - operation. Read more

impl Sub<usize> for PAddr[src]

type Output = PAddr

The resulting type after applying the - operator.

pub fn sub(self, rhs: usize) -> <PAddr as Sub<usize>>::Output[src]

Performs the - operation. Read more

impl UpperHex for PAddr[src]

pub fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>[src]

Formats the value using the given formatter.

impl Copy for PAddr[src]

impl Eq for PAddr[src]

impl StructuralEq for PAddr[src]

impl StructuralPartialEq 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]

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

impl<T> From<T> for T[src]

pub fn from(t: T) -> T[src]

Performs the conversion.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

pub fn into(self) -> U[src]

Performs the conversion.

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

pub fn to_owned(&self) -> T[src]

Creates owned data from borrowed data, usually by cloning. Read more

pub fn clone_into(&self, target: &mut T)[src]

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

impl<T> ToString for T where
    T: Display + ?Sized
[src]

pub default fn to_string(&self) -> String[src]

Converts the given value to a String. Read more

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

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

Performs the conversion.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

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

Performs the conversion.