Struct goblin::pe::exception::UnwindCode
source · pub struct UnwindCode {
pub code_offset: u8,
pub operation: UnwindOperation,
}
Expand description
An unwind operation that is executed at a particular place in the function prolog.
Fields§
§code_offset: u8
Offset of the corresponding instruction in the function prolog.
To be precise, this is the offset from the beginning of the prolog of the end of the instruction that performs this operation, plus 1 (that is, the offset of the start of the next instruction).
Unwind codes are ordered by this offset in reverse order, suitable for unwinding.
operation: UnwindOperation
The operation that was performed by the code in the prolog.
Trait Implementations§
source§impl Clone for UnwindCode
impl Clone for UnwindCode
source§fn clone(&self) -> UnwindCode
fn clone(&self) -> UnwindCode
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 UnwindCode
impl Debug for UnwindCode
source§impl PartialEq for UnwindCode
impl PartialEq for UnwindCode
source§fn eq(&self, other: &UnwindCode) -> bool
fn eq(&self, other: &UnwindCode) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for UnwindCode
impl Eq for UnwindCode
impl StructuralEq for UnwindCode
impl StructuralPartialEq for UnwindCode
Auto Trait Implementations§
impl RefUnwindSafe for UnwindCode
impl Send for UnwindCode
impl Sync for UnwindCode
impl Unpin for UnwindCode
impl UnwindSafe for UnwindCode
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