pub trait IUIAutomationProxyFactory_Impl: Sized {
    // Required methods
    fn CreateProvider(
        &self,
        hwnd: HWND,
        idobject: i32,
        idchild: i32,
    ) -> Result<IRawElementProviderSimple>;
    fn ProxyFactoryId(&self) -> Result<BSTR>;
}

Required Methods§

fn CreateProvider( &self, hwnd: HWND, idobject: i32, idchild: i32, ) -> Result<IRawElementProviderSimple>

fn ProxyFactoryId(&self) -> Result<BSTR>

Object Safety§

This trait is not object safe.

Implementors§