Enum goblin::pe::exception::UnwindHandler
source · pub enum UnwindHandler<'a> {
ExceptionHandler(u32, &'a [u8]),
TerminationHandler(u32, &'a [u8]),
}
Expand description
A language-specific handler that is called as part of the search for an exception handler or as part of an unwind.
Variants§
ExceptionHandler(u32, &'a [u8])
The image-relative address of an exception handler and its implementation-defined data.
TerminationHandler(u32, &'a [u8])
The image-relative address of a termination handler and its implementation-defined data.
Trait Implementations§
source§impl<'a> Clone for UnwindHandler<'a>
impl<'a> Clone for UnwindHandler<'a>
source§fn clone(&self) -> UnwindHandler<'a>
fn clone(&self) -> UnwindHandler<'a>
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<'a> Debug for UnwindHandler<'a>
impl<'a> Debug for UnwindHandler<'a>
source§impl<'a> PartialEq for UnwindHandler<'a>
impl<'a> PartialEq for UnwindHandler<'a>
source§fn eq(&self, other: &UnwindHandler<'a>) -> bool
fn eq(&self, other: &UnwindHandler<'a>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl<'a> Copy for UnwindHandler<'a>
impl<'a> StructuralPartialEq for UnwindHandler<'a>
Auto Trait Implementations§
impl<'a> RefUnwindSafe for UnwindHandler<'a>
impl<'a> Send for UnwindHandler<'a>
impl<'a> Sync for UnwindHandler<'a>
impl<'a> Unpin for UnwindHandler<'a>
impl<'a> UnwindSafe for UnwindHandler<'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