windows::Win32::Web::InternetExplorer

Trait Iwfolders_Impl

pub trait Iwfolders_Impl: IDispatch_Impl {
    // Required methods
    fn navigate(&self, bstrurl: &BSTR) -> Result<BSTR>;
    fn navigateFrame(
        &self,
        bstrurl: &BSTR,
        bstrtargetframe: &BSTR,
    ) -> Result<BSTR>;
    fn navigateNoSite(
        &self,
        bstrurl: &BSTR,
        bstrtargetframe: &BSTR,
        dwhwnd: u32,
        pwb: Ref<'_, IUnknown>,
    ) -> Result<()>;
}

Required Methods§

fn navigate(&self, bstrurl: &BSTR) -> Result<BSTR>

fn navigateFrame(&self, bstrurl: &BSTR, bstrtargetframe: &BSTR) -> Result<BSTR>

fn navigateNoSite( &self, bstrurl: &BSTR, bstrtargetframe: &BSTR, dwhwnd: u32, pwb: Ref<'_, IUnknown>, ) -> Result<()>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§