pub struct X64ExceptionHandlerTable {
pub begin_address: u32,
pub end_address: u32,
pub unwind_infomation: u32,
}Fields§
§begin_address: u32The VA of the corresponding function.
end_address: u32The RVA of the end of the function.
unwind_infomation: u32The RVA of the unwind information.
Trait Implementations§
Source§impl Clone for X64ExceptionHandlerTable
impl Clone for X64ExceptionHandlerTable
Source§fn clone(&self) -> X64ExceptionHandlerTable
fn clone(&self) -> X64ExceptionHandlerTable
Returns a duplicate 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 X64ExceptionHandlerTable
impl Debug for X64ExceptionHandlerTable
Source§impl Default for X64ExceptionHandlerTable
impl Default for X64ExceptionHandlerTable
Source§fn default() -> X64ExceptionHandlerTable
fn default() -> X64ExceptionHandlerTable
Returns the “default value” for a type. Read more
Source§impl PartialEq for X64ExceptionHandlerTable
impl PartialEq for X64ExceptionHandlerTable
Source§impl ReadData for X64ExceptionHandlerTable
impl ReadData for X64ExceptionHandlerTable
Source§impl WriteData for &X64ExceptionHandlerTable
impl WriteData for &X64ExceptionHandlerTable
impl Eq for X64ExceptionHandlerTable
impl StructuralPartialEq for X64ExceptionHandlerTable
Auto Trait Implementations§
impl Freeze for X64ExceptionHandlerTable
impl RefUnwindSafe for X64ExceptionHandlerTable
impl Send for X64ExceptionHandlerTable
impl Sync for X64ExceptionHandlerTable
impl Unpin for X64ExceptionHandlerTable
impl UnwindSafe for X64ExceptionHandlerTable
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