Trait ITravelLogClient_Impl
pub trait ITravelLogClient_Impl: IUnknownImpl {
// Required methods
fn FindWindowByIndex(&self, dwid: u32) -> Result<IUnknown>;
fn GetWindowData(
&self,
pstream: Ref<'_, 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: Ref<'_, IStream>, pwindata: *mut WINDOWDATA, ) -> Result<()>
fn LoadHistoryPosition( &self, pszurllocation: &PCWSTR, dwposition: u32, ) -> 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.