pub trait IIEWebDriverSite_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn WindowOperation(&self, operationcode: u32, hwnd: u32) -> Result<()>;
    fn DetachWebdriver(&self, punkwd: Option<&IUnknown>) -> Result<()>;
    fn GetCapabilityValue(
        &self,
        punkwd: Option<&IUnknown>,
        capname: &PCWSTR
    ) -> Result<VARIANT>;
}

Required Methods§

fn WindowOperation(&self, operationcode: u32, hwnd: u32) -> Result<()>

fn DetachWebdriver(&self, punkwd: Option<&IUnknown>) -> Result<()>

fn GetCapabilityValue( &self, punkwd: Option<&IUnknown>, capname: &PCWSTR ) -> Result<VARIANT>

Object Safety§

This trait is not object safe.

Implementors§