[][src]Struct x86::bits64::paging::PAddr

#[repr(transparent)]
pub struct PAddr(pub u64);

A wrapper for a physical address.

Methods

impl PAddr[src]

pub const fn as_u64(&self) -> u64[src]

Convert to u64

pub const fn from_u64(p: u64) -> Self[src]

Convert from 64

Trait Implementations

impl Copy for PAddr[src]

impl Clone for PAddr[src]

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

Performs copy-assignment from source. Read more

impl PartialEq<PAddr> for PAddr[src]

impl Eq for PAddr[src]

impl Ord for PAddr[src]

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

Compares and returns the maximum of two values. Read more

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

Compares and returns the minimum of two values. Read more

impl PartialOrd<PAddr> for PAddr[src]

impl From<u64> for PAddr[src]

impl Display for PAddr[src]

impl Debug for PAddr[src]

impl Add<PAddr> for PAddr[src]

type Output = PAddr

The resulting type after applying the + operator.

impl Add<u64> for PAddr[src]

type Output = PAddr

The resulting type after applying the + operator.

impl Add<usize> for PAddr[src]

type Output = PAddr

The resulting type after applying the + operator.

impl Sub<PAddr> for PAddr[src]

type Output = PAddr

The resulting type after applying the - operator.

impl Sub<u64> for PAddr[src]

type Output = PAddr

The resulting type after applying the - operator.

impl Sub<usize> for PAddr[src]

type Output = PAddr

The resulting type after applying the - operator.

impl Rem<PAddr> for PAddr[src]

type Output = PAddr

The resulting type after applying the % operator.

impl Rem<u64> for PAddr[src]

type Output = u64

The resulting type after applying the % operator.

impl Rem<usize> for PAddr[src]

type Output = usize

The resulting type after applying the % operator.

impl AddAssign<PAddr> for PAddr[src]

impl AddAssign<u64> for PAddr[src]

impl BitAnd<PAddr> for PAddr[src]

type Output = Self

The resulting type after applying the & operator.

impl BitAnd<u64> for PAddr[src]

type Output = u64

The resulting type after applying the & operator.

impl BitOr<PAddr> for PAddr[src]

type Output = PAddr

The resulting type after applying the | operator.

impl BitOr<u64> for PAddr[src]

type Output = u64

The resulting type after applying the | operator.

impl Shr<u64> for PAddr[src]

type Output = u64

The resulting type after applying the >> operator.

impl Octal for PAddr[src]

impl Binary for PAddr[src]

impl LowerHex for PAddr[src]

impl UpperHex for PAddr[src]

impl Into<u64> for PAddr[src]

Auto Trait Implementations

impl Send for PAddr

impl Sync for PAddr

Blanket Implementations

impl<T> From for T[src]

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

type Error = !

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

The type returned in the event of a conversion error.

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

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

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

The type returned in the event of a conversion error.

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

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

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

impl<T> Any for T where
    T: 'static + ?Sized
[src]