Trait IHlinkFrame_Impl
pub trait IHlinkFrame_Impl: IUnknownImpl {
    // Required methods
    fn SetBrowseContext(
        &self,
        pihlbc: Ref<'_, IHlinkBrowseContext>,
    ) -> Result<()>;
    fn GetBrowseContext(&self) -> Result<IHlinkBrowseContext>;
    fn Navigate(
        &self,
        grfhlnf: u32,
        pbc: Ref<'_, IBindCtx>,
        pibsc: Ref<'_, IBindStatusCallback>,
        pihlnavigate: Ref<'_, IHlink>,
    ) -> Result<()>;
    fn OnNavigate(
        &self,
        grfhlnf: u32,
        pimktarget: Ref<'_, IMoniker>,
        pwzlocation: &PCWSTR,
        pwzfriendlyname: &PCWSTR,
        dwreserved: u32,
    ) -> Result<()>;
    fn UpdateHlink(
        &self,
        uhlid: u32,
        pimktarget: Ref<'_, IMoniker>,
        pwzlocation: &PCWSTR,
        pwzfriendlyname: &PCWSTR,
    ) -> Result<()>;
}Required Methods§
fn SetBrowseContext(&self, pihlbc: Ref<'_, IHlinkBrowseContext>) -> Result<()>
fn GetBrowseContext(&self) -> Result<IHlinkBrowseContext>
fn UpdateHlink( &self, uhlid: u32, pimktarget: Ref<'_, IMoniker>, pwzlocation: &PCWSTR, pwzfriendlyname: &PCWSTR, ) -> 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.