pub trait ITDispatchMapper_Impl: Sized + IDispatch_Impl {
    // Required method
    fn QueryDispatchInterface(
        &self,
        piid: &BSTR,
        pinterfacetomap: Option<&IDispatch>
    ) -> Result<IDispatch>;
}

Required Methods§

fn QueryDispatchInterface( &self, piid: &BSTR, pinterfacetomap: Option<&IDispatch> ) -> Result<IDispatch>

Object Safety§

This trait is not object safe.

Implementors§