pub trait IMFRemoteAsyncCallback_Impl: Sized {
    // Required method
    fn Invoke(
        &self,
        hr: HRESULT,
        premoteresult: Option<&IUnknown>
    ) -> Result<()>;
}

Required Methods§

fn Invoke(&self, hr: HRESULT, premoteresult: Option<&IUnknown>) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§