windows::Win32::System::Diagnostics::Debug::ActiveScript

Trait IDebugApplicationThread_Impl

pub trait IDebugApplicationThread_Impl: IRemoteDebugApplicationThread_Impl {
    // Required methods
    fn SynchronousCallIntoThread32(
        &self,
        pstcb: Ref<'_, IDebugThreadCall32>,
        dwparam1: u32,
        dwparam2: u32,
        dwparam3: u32,
    ) -> Result<()>;
    fn QueryIsCurrentThread(&self) -> Result<()>;
    fn QueryIsDebuggerThread(&self) -> Result<()>;
    fn SetDescription(&self, pstrdescription: &PCWSTR) -> Result<()>;
    fn SetStateString(&self, pstrstate: &PCWSTR) -> Result<()>;
}

Required Methods§

fn SynchronousCallIntoThread32( &self, pstcb: Ref<'_, IDebugThreadCall32>, dwparam1: u32, dwparam2: u32, dwparam3: u32, ) -> Result<()>

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

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

fn SetDescription(&self, pstrdescription: &PCWSTR) -> Result<()>

fn SetStateString(&self, pstrstate: &PCWSTR) -> Result<()>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§