#[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],
}Fields§
§ExceptionCode: NTSTATUS§ExceptionFlags: u32§ExceptionRecord: *mut EXCEPTION_RECORD§ExceptionAddress: *mut c_void§NumberParameters: u32§ExceptionInformation: [usize; 15]Auto Trait Implementations§
impl Freeze for EXCEPTION_RECORD
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