#[repr(C)]pub struct DISPATCHER_CONTEXT {
    pub ControlPc: DWORD64,
    pub ImageBase: DWORD64,
    pub FunctionEntry: PRUNTIME_FUNCTION,
    pub EstablisherFrame: DWORD64,
    pub TargetIp: DWORD64,
    pub ContextRecord: PCONTEXT,
    pub LanguageHandler: PEXCEPTION_ROUTINE,
    pub HandlerData: PVOID,
    pub HistoryTable: PUNWIND_HISTORY_TABLE,
    pub ScopeIndex: DWORD,
    pub Fill0: DWORD,
}Fields§
§ControlPc: DWORD64§ImageBase: DWORD64§FunctionEntry: PRUNTIME_FUNCTION§EstablisherFrame: DWORD64§TargetIp: DWORD64§ContextRecord: PCONTEXT§LanguageHandler: PEXCEPTION_ROUTINE§HandlerData: PVOID§HistoryTable: PUNWIND_HISTORY_TABLE§ScopeIndex: DWORD§Fill0: DWORDTrait Implementations§
Source§impl Clone for DISPATCHER_CONTEXT
 
impl Clone for DISPATCHER_CONTEXT
Source§fn clone(&self) -> DISPATCHER_CONTEXT
 
fn clone(&self) -> DISPATCHER_CONTEXT
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 moreimpl Copy for DISPATCHER_CONTEXT
Auto Trait Implementations§
impl Freeze for DISPATCHER_CONTEXT
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§
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