Struct windows_sys::Win32::System::Diagnostics::Debug::EXCEPTION_RECORD
#[repr(C)]pub struct EXCEPTION_RECORD {
pub ExceptionCode: NTSTATUS,
pub ExceptionFlags: u32,
pub ExceptionRecord: *mut EXCEPTION_RECORD,
pub ExceptionAddress: *mut c_void,
pub NumberParameters: u32,
pub ExceptionInformation: [usize; 15],
}
Expand description
Required features: "Win32_Foundation"
Fields§
§ExceptionCode: NTSTATUS
§ExceptionFlags: u32
§ExceptionRecord: *mut EXCEPTION_RECORD
§ExceptionAddress: *mut c_void
§NumberParameters: u32
§ExceptionInformation: [usize; 15]
Trait Implementations§
§impl Clone for EXCEPTION_RECORD
impl Clone for EXCEPTION_RECORD
impl Copy for EXCEPTION_RECORD
Auto Trait Implementations§
impl RefUnwindSafe for EXCEPTION_RECORD
impl !Send for EXCEPTION_RECORD
impl !Sync for EXCEPTION_RECORD
impl Unpin for EXCEPTION_RECORD
impl UnwindSafe for EXCEPTION_RECORD
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