windows::Win32::Web::InternetExplorer

Trait IHomePageSetting_Impl

pub trait IHomePageSetting_Impl: IUnknownImpl {
    // Required methods
    fn SetHomePage(
        &self,
        hwnd: HWND,
        homepageuri: &PCWSTR,
        brandingmessage: &PCWSTR,
    ) -> Result<()>;
    fn IsHomePage(&self, uri: &PCWSTR) -> Result<BOOL>;
    fn SetHomePageToBrowserDefault(&self) -> Result<()>;
}

Required Methods§

fn SetHomePage( &self, hwnd: HWND, homepageuri: &PCWSTR, brandingmessage: &PCWSTR, ) -> Result<()>

fn IsHomePage(&self, uri: &PCWSTR) -> Result<BOOL>

fn SetHomePageToBrowserDefault(&self) -> 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§