Struct Gva

Source
pub struct Gva(/* private fields */);
Expand description

Strong type for Guest Virtual Addresses.

§Examples

let gva = Gva::new(0x1337_fff);
assert_eq!(gva.offset(), 0xfff);
assert_eq!(gva.page_aligned(), false);
let aligned_gva = gva.page_align();
assert_eq!(aligned_gva.u64(), 0x1337_000);
assert_eq!(aligned_gva.page_aligned(), true);
let next_gva = gva.next_aligned_page();
assert_eq!(next_gva.u64(), 0x1338_000);

Implementations§

Source§

impl Gva

Source

pub const fn new(addr: u64) -> Self

Create a new Gva.

§Examples
let gva = Gva::new(0xdeadbeef);
Source

pub const fn pte_idx(&self) -> u64

Get the PTE index of the Gva.

§Examples
let first = Gva::new(0xff_ff_b9_dc_ee_77_31_37);
assert_eq!(first.pte_idx(), 371);
let second = Gva::new(0xff_ff_11_22_33_44_55_66);
assert_eq!(second.pte_idx(), 0x45);
Source

pub const fn pde_idx(&self) -> u64

Get the PDE index of the Gva.

§Examples
let first = Gva::new(0xff_ff_b9_dc_ee_77_31_37);
assert_eq!(first.pde_idx(), 371);
let second = Gva::new(0xff_ff_11_22_33_44_55_66);
assert_eq!(second.pde_idx(), 0x19a);
Source

pub const fn pdpe_idx(&self) -> u64

Get the PDPE offset of the Gva.

§Examples
let first = Gva::new(0xff_ff_b9_dc_ee_77_31_37);
assert_eq!(first.pdpe_idx(), 371);
let second = Gva::new(0xff_ff_11_22_33_44_55_66);
assert_eq!(second.pdpe_idx(), 0x88);
Source

pub fn pml4e_idx(&self) -> u64

Get the PML4 index of the Gva.

§Examples
let first = Gva::new(0xff_ff_b9_dc_ee_77_31_37);
assert_eq!(first.pml4e_idx(), 371);
let second = Gva::new(0xff_ff_11_22_33_44_55_66);
assert_eq!(second.pml4e_idx(), 0x22);

Trait Implementations§

Source§

impl AddAssign for Gva

Operator += for Gva.

Source§

fn add_assign(&mut self, rhs: Self)

Performs the += operation. Read more
Source§

impl Clone for Gva

Source§

fn clone(&self) -> Gva

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Gva

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for Gva

Source§

fn default() -> Gva

Returns the “default value” for a type. Read more
Source§

impl Display for Gva

Format Gva as a string.

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl From<&Gva> for u64

Convert a &Gva into a u64.

Source§

fn from(value: &Gva) -> Self

Create a u64 from a &Gpa.

§Examples
let gva = Gpa::new(0xbaadc0de_deadbeef);
let gva_p = &gva;
let gva_u64: u64 = gva_p.into();
assert_eq!(gva_u64, 0xbaadc0de_deadbeef);
assert_eq!(u64::from(gva_p), 0xbaadc0de_deadbeef);
Source§

impl From<Gva> for u64

Convert a Gva into a u64.

Source§

fn from(value: Gva) -> Self

Create a u64 from a Gva.

§Examples
let gva = Gva::new(0xbaadc0de_deadbeef);
let gva_u64: u64 = gva.into();
assert_eq!(gva_u64, 0xbaadc0de_deadbeef);
assert_eq!(u64::from(gva), 0xbaadc0de_deadbeef);
Source§

impl From<u64> for Gva

Convert a Gva into a u64.

Source§

fn from(value: u64) -> Self

Create a Gva from a u64.

§Examples
let gva = Gva::from(0xbaadc0de_deadbeef);
assert_eq!(u64::from(gva), 0xbaadc0de_deadbeef);
Source§

impl Gxa for Gva

Source§

fn u64(&self) -> u64

Get the underlying u64.

§Examples
let gva = Gva::new(0xdeadbeef);
assert_eq!(gva.u64(), 0xdeadbeef);
Source§

fn offset(&self) -> u64

Get the page offset.
Source§

fn page_aligned(&self) -> bool

Is it page aligned?
Source§

fn page_align(&self) -> Self

Page-align it.
Source§

fn next_aligned_page(self) -> Self

Get the next aligned page.
Source§

impl Hash for Gva

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

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

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

impl Ord for Gva

Source§

fn cmp(&self, other: &Gva) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · Source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · Source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · Source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
Source§

impl PartialEq for Gva

Source§

fn eq(&self, other: &Gva) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialOrd for Gva

Source§

fn partial_cmp(&self, other: &Gva) -> Option<Ordering>

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

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · Source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · Source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · Source§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl Copy for Gva

Source§

impl Eq for Gva

Source§

impl StructuralPartialEq for Gva

Auto Trait Implementations§

§

impl Freeze for Gva

§

impl RefUnwindSafe for Gva

§

impl Send for Gva

§

impl Sync for Gva

§

impl Unpin for Gva

§

impl UnwindSafe for Gva

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

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

fn clone_into(&self, target: &mut T)

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

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

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

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

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

Performs the conversion.