Trait ITravelEntry_Impl
pub trait ITravelEntry_Impl: IUnknownImpl {
// Required methods
fn Invoke(&self, punk: Ref<'_, IUnknown>) -> Result<()>;
fn Update(
&self,
punk: Ref<'_, IUnknown>,
fislocalanchor: BOOL,
) -> Result<()>;
fn GetPidl(&self) -> Result<*mut ITEMIDLIST>;
}
Required Methods§
fn Invoke(&self, punk: Ref<'_, IUnknown>) -> Result<()>
fn Update(&self, punk: Ref<'_, IUnknown>, fislocalanchor: BOOL) -> Result<()>
fn GetPidl(&self) -> Result<*mut ITEMIDLIST>
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.