Enum goblin::pe::exception::StackFrameOffset
source · pub enum StackFrameOffset {
RSP(u32),
FP(u32),
}
Expand description
An unsigned offset to a value in the local stack frame.
Variants§
RSP(u32)
Offset from the current RSP, that is, the lowest address of the fixed stack allocation.
To restore this register, read the value at the given offset from the RSP.
FP(u32)
Offset from the value of the frame pointer register.
To restore this register, read the value at the given offset from the FP register, reduced
by the frame_register_offset
value specified in the UnwindInfo
structure. By definition,
the frame pointer register is any register other than RAX (0
).
Trait Implementations§
source§impl Clone for StackFrameOffset
impl Clone for StackFrameOffset
source§fn clone(&self) -> StackFrameOffset
fn clone(&self) -> StackFrameOffset
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 StackFrameOffset
impl Debug for StackFrameOffset
source§impl PartialEq for StackFrameOffset
impl PartialEq for StackFrameOffset
source§fn eq(&self, other: &StackFrameOffset) -> bool
fn eq(&self, other: &StackFrameOffset) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for StackFrameOffset
impl Eq for StackFrameOffset
impl StructuralEq for StackFrameOffset
impl StructuralPartialEq for StackFrameOffset
Auto Trait Implementations§
impl RefUnwindSafe for StackFrameOffset
impl Send for StackFrameOffset
impl Sync for StackFrameOffset
impl Unpin for StackFrameOffset
impl UnwindSafe for StackFrameOffset
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