windows::Win32::Web::InternetExplorer

Trait IUrlHistoryStg_Impl

pub trait IUrlHistoryStg_Impl: IUnknownImpl {
    // Required methods
    fn AddUrl(
        &self,
        pocsurl: &PCWSTR,
        pocstitle: &PCWSTR,
        dwflags: u32,
    ) -> Result<()>;
    fn DeleteUrl(&self, pocsurl: &PCWSTR, dwflags: u32) -> Result<()>;
    fn QueryUrl(
        &self,
        pocsurl: &PCWSTR,
        dwflags: u32,
        lpstaturl: *mut STATURL,
    ) -> Result<()>;
    fn BindToObject(
        &self,
        pocsurl: &PCWSTR,
        riid: *const GUID,
        ppvout: *mut *mut c_void,
    ) -> Result<()>;
    fn EnumUrls(&self) -> Result<IEnumSTATURL>;
}

Required Methods§

fn AddUrl( &self, pocsurl: &PCWSTR, pocstitle: &PCWSTR, dwflags: u32, ) -> Result<()>

fn DeleteUrl(&self, pocsurl: &PCWSTR, dwflags: u32) -> Result<()>

fn QueryUrl( &self, pocsurl: &PCWSTR, dwflags: u32, lpstaturl: *mut STATURL, ) -> Result<()>

fn BindToObject( &self, pocsurl: &PCWSTR, riid: *const GUID, ppvout: *mut *mut c_void, ) -> Result<()>

fn EnumUrls(&self) -> Result<IEnumSTATURL>

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§