Trait ITravelLog_Impl
pub trait ITravelLog_Impl: IUnknownImpl {
    // Required methods
    fn AddEntry(
        &self,
        punk: Ref<'_, IUnknown>,
        fislocalanchor: BOOL,
    ) -> Result<()>;
    fn UpdateEntry(
        &self,
        punk: Ref<'_, IUnknown>,
        fislocalanchor: BOOL,
    ) -> Result<()>;
    fn UpdateExternal(
        &self,
        punk: Ref<'_, IUnknown>,
        punkhlbrowsecontext: Ref<'_, IUnknown>,
    ) -> Result<()>;
    fn Travel(&self, punk: Ref<'_, IUnknown>, ioffset: i32) -> Result<()>;
    fn GetTravelEntry(
        &self,
        punk: Ref<'_, IUnknown>,
        ioffset: i32,
        ppte: OutRef<'_, ITravelEntry>,
    ) -> Result<()>;
    fn FindTravelEntry(
        &self,
        punk: Ref<'_, IUnknown>,
        pidl: *const ITEMIDLIST,
    ) -> Result<ITravelEntry>;
    fn GetToolTipText(
        &self,
        punk: Ref<'_, IUnknown>,
        ioffset: i32,
        idstemplate: i32,
        pwztext: PWSTR,
        cchtext: u32,
    ) -> Result<()>;
    fn InsertMenuEntries(
        &self,
        punk: Ref<'_, IUnknown>,
        hmenu: HMENU,
        npos: i32,
        idfirst: i32,
        idlast: i32,
        dwflags: u32,
    ) -> Result<()>;
    fn Clone(&self) -> Result<ITravelLog>;
    fn CountEntries(&self, punk: Ref<'_, IUnknown>) -> u32;
    fn Revert(&self) -> Result<()>;
}Required Methods§
fn AddEntry(&self, punk: Ref<'_, IUnknown>, fislocalanchor: BOOL) -> Result<()>
fn UpdateEntry( &self, punk: Ref<'_, IUnknown>, fislocalanchor: BOOL, ) -> Result<()>
fn UpdateExternal( &self, punk: Ref<'_, IUnknown>, punkhlbrowsecontext: Ref<'_, IUnknown>, ) -> Result<()>
fn Travel(&self, punk: Ref<'_, IUnknown>, ioffset: i32) -> Result<()>
fn GetTravelEntry( &self, punk: Ref<'_, IUnknown>, ioffset: i32, ppte: OutRef<'_, ITravelEntry>, ) -> Result<()>
fn FindTravelEntry( &self, punk: Ref<'_, IUnknown>, pidl: *const ITEMIDLIST, ) -> Result<ITravelEntry>
fn GetToolTipText( &self, punk: Ref<'_, IUnknown>, ioffset: i32, idstemplate: i32, pwztext: PWSTR, cchtext: u32, ) -> Result<()>
fn InsertMenuEntries( &self, punk: Ref<'_, IUnknown>, hmenu: HMENU, npos: i32, idfirst: i32, idlast: i32, dwflags: u32, ) -> Result<()>
fn Clone(&self) -> Result<ITravelLog>
fn CountEntries(&self, punk: Ref<'_, IUnknown>) -> u32
fn Revert(&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.