Struct framehop::x86_64::UnwindRegsX86_64
source · pub struct UnwindRegsX86_64 { /* private fields */ }
Implementations§
source§impl UnwindRegsX86_64
impl UnwindRegsX86_64
pub fn new(ip: u64, sp: u64, bp: u64) -> Self
pub fn get(&self, reg: Reg) -> u64
pub fn set(&mut self, reg: Reg, value: u64)
pub fn ip(&self) -> u64
pub fn set_ip(&mut self, ip: u64)
pub fn sp(&self) -> u64
pub fn set_sp(&mut self, sp: u64)
pub fn bp(&self) -> u64
pub fn set_bp(&mut self, bp: u64)
Trait Implementations§
source§impl Clone for UnwindRegsX86_64
impl Clone for UnwindRegsX86_64
source§fn clone(&self) -> UnwindRegsX86_64
fn clone(&self) -> UnwindRegsX86_64
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for UnwindRegsX86_64
impl Debug for UnwindRegsX86_64
source§impl PartialEq for UnwindRegsX86_64
impl PartialEq for UnwindRegsX86_64
source§fn eq(&self, other: &UnwindRegsX86_64) -> bool
fn eq(&self, other: &UnwindRegsX86_64) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for UnwindRegsX86_64
impl Eq for UnwindRegsX86_64
impl StructuralEq for UnwindRegsX86_64
impl StructuralPartialEq for UnwindRegsX86_64
Auto Trait Implementations§
impl RefUnwindSafe for UnwindRegsX86_64
impl Send for UnwindRegsX86_64
impl Sync for UnwindRegsX86_64
impl Unpin for UnwindRegsX86_64
impl UnwindSafe for UnwindRegsX86_64
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