pub trait IDebuggerThreadControl_Impl: Sized {
    // Required methods
    fn ThreadIsBlockingForDebugger(&self) -> Result<()>;
    fn ReleaseAllRuntimeThreads(&self) -> Result<()>;
    fn StartBlockingForDebugger(&self, dwunused: u32) -> Result<()>;
}

Required Methods§

fn ThreadIsBlockingForDebugger(&self) -> Result<()>

fn ReleaseAllRuntimeThreads(&self) -> Result<()>

fn StartBlockingForDebugger(&self, dwunused: u32) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§