Struct goblin::pe::exception::RuntimeFunction
source · #[repr(C)]pub struct RuntimeFunction {
pub begin_address: u32,
pub end_address: u32,
pub unwind_info_address: u32,
}
Expand description
An unwind entry for a range of a function.
Unwind information for this function can be loaded with ExceptionData::get_unwind_info
.
Fields§
§begin_address: u32
Function start address.
end_address: u32
Function end address.
unwind_info_address: u32
Unwind info address.
Trait Implementations§
source§impl Clone for RuntimeFunction
impl Clone for RuntimeFunction
source§fn clone(&self) -> RuntimeFunction
fn clone(&self) -> RuntimeFunction
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 RuntimeFunction
impl Debug for RuntimeFunction
source§impl Default for RuntimeFunction
impl Default for RuntimeFunction
source§fn default() -> RuntimeFunction
fn default() -> RuntimeFunction
Returns the “default value” for a type. Read more
source§impl PartialEq for RuntimeFunction
impl PartialEq for RuntimeFunction
source§fn eq(&self, other: &RuntimeFunction) -> bool
fn eq(&self, other: &RuntimeFunction) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl<'a> TryFromCtx<'a, Endian> for RuntimeFunctionwhere
RuntimeFunction: 'a,
impl<'a> TryFromCtx<'a, Endian> for RuntimeFunctionwhere RuntimeFunction: 'a,
source§impl<'a> TryIntoCtx<Endian> for &'a RuntimeFunction
impl<'a> TryIntoCtx<Endian> for &'a RuntimeFunction
source§impl TryIntoCtx<Endian> for RuntimeFunction
impl TryIntoCtx<Endian> for RuntimeFunction
impl Copy for RuntimeFunction
impl StructuralPartialEq for RuntimeFunction
Auto Trait Implementations§
impl RefUnwindSafe for RuntimeFunction
impl Send for RuntimeFunction
impl Sync for RuntimeFunction
impl Unpin for RuntimeFunction
impl UnwindSafe for RuntimeFunction
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