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

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

A wrapper for a virtual address.

Methods

impl VAddr[src]

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

Convert from u64

pub const fn from_usize(v: usize) -> Self[src]

Convert from usize

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

Convert to u64

pub const fn as_usize(&self) -> usize[src]

Convert to usize

pub fn as_mut_ptr<T>(&self) -> *mut T[src]

Convert to mutable pointer.

pub fn as_ptr<T>(&self) -> *const T[src]

Convert to pointer.

Trait Implementations

impl Copy for VAddr[src]

impl Clone for VAddr[src]

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

Performs copy-assignment from source. Read more

impl PartialEq<VAddr> for VAddr[src]

impl Eq for VAddr[src]

impl Ord for VAddr[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<VAddr> for VAddr[src]

impl From<u64> for VAddr[src]

impl From<usize> for VAddr[src]

impl Display for VAddr[src]

impl Debug for VAddr[src]

impl Add<VAddr> for VAddr[src]

type Output = VAddr

The resulting type after applying the + operator.

impl Add<u64> for VAddr[src]

type Output = VAddr

The resulting type after applying the + operator.

impl Add<usize> for VAddr[src]

type Output = VAddr

The resulting type after applying the + operator.

impl Sub<VAddr> for VAddr[src]

type Output = VAddr

The resulting type after applying the - operator.

impl Sub<u64> for VAddr[src]

type Output = VAddr

The resulting type after applying the - operator.

impl Sub<usize> for VAddr[src]

type Output = VAddr

The resulting type after applying the - operator.

impl Rem<VAddr> for VAddr[src]

type Output = VAddr

The resulting type after applying the % operator.

impl Rem<u64> for VAddr[src]

type Output = u64

The resulting type after applying the % operator.

impl Rem<usize> for VAddr[src]

type Output = usize

The resulting type after applying the % operator.

impl BitAnd<VAddr> for VAddr[src]

type Output = Self

The resulting type after applying the & operator.

impl BitAnd<usize> for VAddr[src]

type Output = usize

The resulting type after applying the & operator.

impl BitOr<VAddr> for VAddr[src]

type Output = VAddr

The resulting type after applying the | operator.

impl BitOr<u64> for VAddr[src]

type Output = u64

The resulting type after applying the | operator.

impl BitOr<usize> for VAddr[src]

type Output = usize

The resulting type after applying the | operator.

impl Shr<u64> for VAddr[src]

type Output = u64

The resulting type after applying the >> operator.

impl Shr<usize> for VAddr[src]

type Output = usize

The resulting type after applying the >> operator.

impl Octal for VAddr[src]

impl Binary for VAddr[src]

impl LowerHex for VAddr[src]

impl UpperHex for VAddr[src]

impl Into<u64> for VAddr[src]

impl Into<usize> for VAddr[src]

Auto Trait Implementations

impl Send for VAddr

impl Sync for VAddr

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]