pub trait IAsyncManager_Impl: Sized {
    // Required methods
    fn CompleteCall(&self, result: HRESULT) -> Result<()>;
    fn GetCallContext(
        &self,
        riid: *const GUID,
        pinterface: *mut *mut c_void
    ) -> Result<()>;
    fn GetState(&self) -> Result<u32>;
}

Required Methods§

fn CompleteCall(&self, result: HRESULT) -> Result<()>

fn GetCallContext( &self, riid: *const GUID, pinterface: *mut *mut c_void ) -> Result<()>

fn GetState(&self) -> Result<u32>

Object Safety§

This trait is not object safe.

Implementors§