msfs::sys

Type Alias EXCEPTION_RECORD

Source
pub type EXCEPTION_RECORD = _EXCEPTION_RECORD;

Aliased Type§

struct EXCEPTION_RECORD {
    pub ExceptionCode: u64,
    pub ExceptionFlags: u64,
    pub ExceptionRecord: *mut _EXCEPTION_RECORD,
    pub ExceptionAddress: *mut c_void,
    pub NumberParameters: u64,
    pub ExceptionInformation: [u64; 15],
}

Fields§

§ExceptionCode: u64§ExceptionFlags: u64§ExceptionRecord: *mut _EXCEPTION_RECORD§ExceptionAddress: *mut c_void§NumberParameters: u64§ExceptionInformation: [u64; 15]

Trait Implementations

Source§

impl Clone for _EXCEPTION_RECORD

Source§

fn clone(&self) -> _EXCEPTION_RECORD

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for _EXCEPTION_RECORD

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Copy for _EXCEPTION_RECORD