[][src]Union CCODE::_DEBUG_EVENT__bindgen_ty_1

#[repr(C)]pub union _DEBUG_EVENT__bindgen_ty_1 {
    pub Exception: EXCEPTION_DEBUG_INFO,
    pub CreateThread: CREATE_THREAD_DEBUG_INFO,
    pub CreateProcessInfo: CREATE_PROCESS_DEBUG_INFO,
    pub ExitThread: EXIT_THREAD_DEBUG_INFO,
    pub ExitProcess: EXIT_PROCESS_DEBUG_INFO,
    pub LoadDll: LOAD_DLL_DEBUG_INFO,
    pub UnloadDll: UNLOAD_DLL_DEBUG_INFO,
    pub DebugString: OUTPUT_DEBUG_STRING_INFO,
    pub RipInfo: RIP_INFO,
    // some fields omitted
}

Fields

Exception: EXCEPTION_DEBUG_INFOCreateThread: CREATE_THREAD_DEBUG_INFOCreateProcessInfo: CREATE_PROCESS_DEBUG_INFOExitThread: EXIT_THREAD_DEBUG_INFOExitProcess: EXIT_PROCESS_DEBUG_INFOLoadDll: LOAD_DLL_DEBUG_INFOUnloadDll: UNLOAD_DLL_DEBUG_INFODebugString: OUTPUT_DEBUG_STRING_INFORipInfo: RIP_INFO

Trait Implementations

impl Clone for _DEBUG_EVENT__bindgen_ty_1[src]

impl Copy for _DEBUG_EVENT__bindgen_ty_1[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.