Struct windows_sys::Win32::System::Diagnostics::Debug::EXCEPTION_RECORD64
#[repr(C)]pub struct EXCEPTION_RECORD64 {
pub ExceptionCode: NTSTATUS,
pub ExceptionFlags: u32,
pub ExceptionRecord: u64,
pub ExceptionAddress: u64,
pub NumberParameters: u32,
pub __unusedAlignment: u32,
pub ExceptionInformation: [u64; 15],
}
Expand description
Required features: "Win32_Foundation"
Fields§
§ExceptionCode: NTSTATUS
§ExceptionFlags: u32
§ExceptionRecord: u64
§ExceptionAddress: u64
§NumberParameters: u32
§__unusedAlignment: u32
§ExceptionInformation: [u64; 15]
Trait Implementations§
§impl Clone for EXCEPTION_RECORD64
impl Clone for EXCEPTION_RECORD64
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§
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