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

Trait IDebugAsyncOperation_Impl

pub trait IDebugAsyncOperation_Impl: IUnknownImpl {
    // Required methods
    fn GetSyncDebugOperation(&self) -> Result<IDebugSyncOperation>;
    fn Start(&self, padocb: Ref<'_, IDebugAsyncOperationCallBack>) -> Result<()>;
    fn Abort(&self) -> Result<()>;
    fn QueryIsComplete(&self) -> Result<()>;
    fn GetResult(
        &self,
        phrresult: *mut HRESULT,
        ppunkresult: OutRef<'_, IUnknown>,
    ) -> Result<()>;
}

Required Methods§

fn GetSyncDebugOperation(&self) -> Result<IDebugSyncOperation>

fn Start(&self, padocb: Ref<'_, IDebugAsyncOperationCallBack>) -> Result<()>

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

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

fn GetResult( &self, phrresult: *mut HRESULT, ppunkresult: OutRef<'_, IUnknown>, ) -> 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§