[][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.

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

Return address of nearest 4 KiB page (lower or equal than self).

pub fn align_down_to_large_page(self) -> Self[src]

Return address of nearest 2 MiB page (lower or equal than self).

pub fn align_down_to_huge_page(self) -> Self[src]

Return address of nearest 1 GiB page (lower or equal than self).

pub fn align_up_to_base_page(self) -> Self[src]

Return address of nearest 4 KiB page (higher or equal than self).

pub fn align_up_to_large_page(self) -> Self[src]

Return address of nearest 2 MiB page (higher or equal than self).

pub fn align_up_to_huge_page(self) -> Self[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 Debug for VAddr[src]

impl Display for VAddr[src]

impl PartialEq<VAddr> for VAddr[src]

impl Eq for VAddr[src]

impl Ord for VAddr[src]

fn max(self, other: Self) -> Self1.21.0[src]

Compares and returns the maximum of two values. Read more

fn min(self, other: Self) -> Self1.21.0[src]

Compares and returns the minimum of two values. Read more

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

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

Restrict a value to a certain interval. Read more

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

type Output = VAddr

The resulting type after applying the & operator.

impl BitAnd<usize> for VAddr[src]

type Output = VAddr

The resulting type after applying the & operator.

impl BitAnd<i32> for VAddr[src]

type Output = VAddr

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 = VAddr

The resulting type after applying the | operator.

impl BitOr<usize> for VAddr[src]

type Output = VAddr

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 = u64

The resulting type after applying the >> operator.

impl Shr<i32> for VAddr[src]

type Output = u64

The resulting type after applying the >> operator.

impl Copy for VAddr[src]

impl Into<u64> for VAddr[src]

impl Into<usize> for VAddr[src]

impl From<u64> for VAddr[src]

impl From<i32> for VAddr[src]

impl From<usize> for VAddr[src]

impl Octal for VAddr[src]

impl Binary for VAddr[src]

impl LowerHex for VAddr[src]

impl UpperHex for VAddr[src]

impl Pointer 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

Auto Trait Implementations

impl Unpin for VAddr

impl Send for VAddr

impl Sync for VAddr

Blanket Implementations

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.

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

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

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.

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

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

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