Struct lief::pe::exception_x64::RuntimeFunction
pub struct RuntimeFunction<'a> { /* private fields */ }
Expand description
This structure represents an entry in the exception table (.pdata
section)
for the x86-64 architecture.
Reference: https://learn.microsoft.com/en-us/cpp/build/exception-handling-x64
Implementations§
§impl RuntimeFunction<'_>
impl RuntimeFunction<'_>
pub fn unwind_rva(&self) -> u32
pub fn unwind_rva(&self) -> u32
Unwind info address
pub fn unwind_info(&self) -> Option<UnwindInfo<'_>>
pub fn unwind_info(&self) -> Option<UnwindInfo<'_>>
Detailed unwind information
Trait Implementations§
§impl Debug for RuntimeFunction<'_>
impl Debug for RuntimeFunction<'_>
§impl ExceptionInfo for RuntimeFunction<'_>
impl ExceptionInfo for RuntimeFunction<'_>
Auto Trait Implementations§
impl<'a> !RefUnwindSafe for RuntimeFunction<'a>
impl<'a> !Send for RuntimeFunction<'a>
impl<'a> !Sync for RuntimeFunction<'a>
impl<'a> Unpin for RuntimeFunction<'a>
impl<'a> !UnwindSafe for RuntimeFunction<'a>
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