#[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: DWORD
§ExceptionFlags: DWORD
§ExceptionRecord: DWORD64
§ExceptionAddress: DWORD64
§NumberParameters: DWORD
§__unusedAlignment: DWORD
§ExceptionInformation: [DWORD64; 15]
Trait Implementations§
Source§impl Clone for _EXCEPTION_RECORD64
impl Clone for _EXCEPTION_RECORD64
Source§fn clone(&self) -> _EXCEPTION_RECORD64
fn clone(&self) -> _EXCEPTION_RECORD64
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 Debug for _EXCEPTION_RECORD64
impl Debug for _EXCEPTION_RECORD64
Source§impl Ord for _EXCEPTION_RECORD64
impl Ord for _EXCEPTION_RECORD64
Source§fn cmp(&self, other: &_EXCEPTION_RECORD64) -> Ordering
fn cmp(&self, other: &_EXCEPTION_RECORD64) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for _EXCEPTION_RECORD64
impl PartialEq for _EXCEPTION_RECORD64
Source§impl PartialOrd for _EXCEPTION_RECORD64
impl PartialOrd for _EXCEPTION_RECORD64
impl Copy for _EXCEPTION_RECORD64
impl Eq for _EXCEPTION_RECORD64
impl StructuralPartialEq for _EXCEPTION_RECORD64
Auto Trait Implementations§
impl Freeze for _EXCEPTION_RECORD64
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§
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