#[repr(C)]pub struct EXCEPTION_RECORD64 {
    pub ExceptionCode: DWORD,
    pub ExceptionFlags: DWORD,
    pub ExceptionRecord: DWORD64,
    pub ExceptionAddress: DWORD64,
    pub NumberParameters: DWORD,
    pub __unusedAlignment: DWORD,
    pub ExceptionInformation: [DWORD64; 15],
}Fields
ExceptionCode: DWORDExceptionFlags: DWORDExceptionRecord: DWORD64ExceptionAddress: DWORD64NumberParameters: DWORD__unusedAlignment: DWORDExceptionInformation: [DWORD64; 15]Trait Implementations
sourceimpl Clone for EXCEPTION_RECORD64
 
impl Clone for EXCEPTION_RECORD64
sourcefn clone(&self) -> EXCEPTION_RECORD64
 
fn clone(&self) -> EXCEPTION_RECORD64
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
impl Copy for EXCEPTION_RECORD64
Auto Trait Implementations
impl RefUnwindSafe for EXCEPTION_RECORD64
impl Send for EXCEPTION_RECORD64
impl Sync for EXCEPTION_RECORD64
impl Unpin for EXCEPTION_RECORD64
impl UnwindSafe for EXCEPTION_RECORD64
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
    T: ?Sized, 
 
impl<T> BorrowMut<T> for T where
    T: ?Sized, 
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more