pub struct VAddr(pub u64);Expand description
A virtual address in a target binary.
Kept as a thin newtype so it can’t be mixed up with file offsets or host addresses. Will gain an arch-bits parameter when 16/32-bit targets land.
Tuple Fields§
§0: u64Trait Implementations§
Source§impl Ord for VAddr
impl Ord for VAddr
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialOrd for VAddr
impl PartialOrd for VAddr
impl Copy for VAddr
impl Eq for VAddr
impl StructuralPartialEq for VAddr
Auto Trait Implementations§
impl Freeze for VAddr
impl RefUnwindSafe for VAddr
impl Send for VAddr
impl Sync for VAddr
impl Unpin for VAddr
impl UnsafeUnpin for VAddr
impl UnwindSafe for VAddr
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more