Enum lief::pe::RuntimeExceptionFunction
pub enum RuntimeExceptionFunction<'a> {
X86_64(RuntimeFunction<'a>),
AArch64(RuntimeFunction<'a>),
}
Expand description
Enum that wraps the different kinds of runtime functions associated with exceptions
Variants§
X86_64(RuntimeFunction<'a>)
An x86_64 exception entry
AArch64(RuntimeFunction<'a>)
An ARM64 exception entry
Trait Implementations§
Auto Trait Implementations§
impl<'a> !RefUnwindSafe for RuntimeExceptionFunction<'a>
impl<'a> !Send for RuntimeExceptionFunction<'a>
impl<'a> !Sync for RuntimeExceptionFunction<'a>
impl<'a> Unpin for RuntimeExceptionFunction<'a>
impl<'a> !UnwindSafe for RuntimeExceptionFunction<'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