Struct msfs::sys::_EXCEPTION_RECORD
source · #[repr(C)]pub struct _EXCEPTION_RECORD {
pub ExceptionCode: DWORD,
pub ExceptionFlags: DWORD,
pub ExceptionRecord: *mut _EXCEPTION_RECORD,
pub ExceptionAddress: PVOID,
pub NumberParameters: DWORD,
pub ExceptionInformation: [ULONG_PTR; 15],
}
Fields§
§ExceptionCode: DWORD
§ExceptionFlags: DWORD
§ExceptionRecord: *mut _EXCEPTION_RECORD
§ExceptionAddress: PVOID
§NumberParameters: DWORD
§ExceptionInformation: [ULONG_PTR; 15]
Trait Implementations§
source§impl Clone for _EXCEPTION_RECORD
impl Clone for _EXCEPTION_RECORD
source§fn clone(&self) -> _EXCEPTION_RECORD
fn clone(&self) -> _EXCEPTION_RECORD
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_RECORD
impl Debug 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