Trait IHlinkTarget_Impl
pub trait IHlinkTarget_Impl: IUnknownImpl {
    // Required methods
    fn SetBrowseContext(
        &self,
        pihlbc: Ref<'_, IHlinkBrowseContext>,
    ) -> Result<()>;
    fn GetBrowseContext(&self) -> Result<IHlinkBrowseContext>;
    fn Navigate(&self, grfhlnf: u32, pwzjumplocation: &PCWSTR) -> Result<()>;
    fn GetMoniker(
        &self,
        pwzlocation: &PCWSTR,
        dwassign: u32,
    ) -> Result<IMoniker>;
    fn GetFriendlyName(&self, pwzlocation: &PCWSTR) -> Result<PWSTR>;
}Required Methods§
fn SetBrowseContext(&self, pihlbc: Ref<'_, IHlinkBrowseContext>) -> Result<()>
fn GetBrowseContext(&self) -> Result<IHlinkBrowseContext>
fn GetMoniker(&self, pwzlocation: &PCWSTR, dwassign: u32) -> Result<IMoniker>
fn GetFriendlyName(&self, pwzlocation: &PCWSTR) -> Result<PWSTR>
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.