Struct windows_sys::Win32::System::Diagnostics::Debug::DISPATCHER_CONTEXT
[−]#[repr(C)]pub struct DISPATCHER_CONTEXT {
pub ControlPc: u64,
pub ImageBase: u64,
pub FunctionEntry: *mut IMAGE_RUNTIME_FUNCTION_ENTRY,
pub EstablisherFrame: u64,
pub TargetIp: u64,
pub ContextRecord: *mut CONTEXT,
pub LanguageHandler: EXCEPTION_ROUTINE,
pub HandlerData: *mut c_void,
pub HistoryTable: *mut UNWIND_HISTORY_TABLE,
pub ScopeIndex: u32,
pub Fill0: u32,
}
Expand description
Required features: "Win32_System_Diagnostics_Debug"
, "Win32_Foundation"
, "Win32_System_Kernel"
Fields
ControlPc: u64
ImageBase: u64
FunctionEntry: *mut IMAGE_RUNTIME_FUNCTION_ENTRY
EstablisherFrame: u64
TargetIp: u64
ContextRecord: *mut CONTEXT
LanguageHandler: EXCEPTION_ROUTINE
HandlerData: *mut c_void
HistoryTable: *mut UNWIND_HISTORY_TABLE
ScopeIndex: u32
Fill0: u32
Trait Implementations
impl Clone for DISPATCHER_CONTEXT
impl Clone for DISPATCHER_CONTEXT
impl Copy for DISPATCHER_CONTEXT
Auto Trait Implementations
impl RefUnwindSafe for DISPATCHER_CONTEXT
impl !Send for DISPATCHER_CONTEXT
impl !Sync for DISPATCHER_CONTEXT
impl Unpin for DISPATCHER_CONTEXT
impl UnwindSafe for DISPATCHER_CONTEXT
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more