pub trait ITravelLogClient_Impl: Sized {
    // Required methods
    fn FindWindowByIndex(&self, dwid: u32) -> Result<IUnknown>;
    fn GetWindowData(
        &self,
        pstream: Option<&IStream>,
        pwindata: *mut WINDOWDATA
    ) -> Result<()>;
    fn LoadHistoryPosition(
        &self,
        pszurllocation: &PCWSTR,
        dwposition: u32
    ) -> Result<()>;
}

Required Methods§

fn FindWindowByIndex(&self, dwid: u32) -> Result<IUnknown>

fn GetWindowData( &self, pstream: Option<&IStream>, pwindata: *mut WINDOWDATA ) -> Result<()>

fn LoadHistoryPosition( &self, pszurllocation: &PCWSTR, dwposition: u32 ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§