Trait IHlinkSite_Impl
pub trait IHlinkSite_Impl: IUnknownImpl {
    // Required methods
    fn QueryService(
        &self,
        dwsitedata: u32,
        guidservice: *const GUID,
        riid: *const GUID,
    ) -> Result<IUnknown>;
    fn GetMoniker(
        &self,
        dwsitedata: u32,
        dwassign: u32,
        dwwhich: u32,
    ) -> Result<IMoniker>;
    fn ReadyToNavigate(&self, dwsitedata: u32, dwreserved: u32) -> Result<()>;
    fn OnNavigationComplete(
        &self,
        dwsitedata: u32,
        dwreserved: u32,
        hrerror: HRESULT,
        pwzerror: &PCWSTR,
    ) -> Result<()>;
}Required Methods§
fn QueryService( &self, dwsitedata: u32, guidservice: *const GUID, riid: *const GUID, ) -> Result<IUnknown>
fn GetMoniker( &self, dwsitedata: u32, dwassign: u32, dwwhich: u32, ) -> Result<IMoniker>
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.