pub trait IUrlMon_Impl: Sized {
    // Required method
    fn AsyncGetClassBits(
        &self,
        rclsid: *const GUID,
        psztype: &PCWSTR,
        pszext: &PCWSTR,
        dwfileversionms: u32,
        dwfileversionls: u32,
        pszcodebase: &PCWSTR,
        pbc: Option<&IBindCtx>,
        dwclasscontext: u32,
        riid: *const GUID,
        flags: u32
    ) -> Result<()>;
}

Required Methods§

fn AsyncGetClassBits( &self, rclsid: *const GUID, psztype: &PCWSTR, pszext: &PCWSTR, dwfileversionms: u32, dwfileversionls: u32, pszcodebase: &PCWSTR, pbc: Option<&IBindCtx>, dwclasscontext: u32, riid: *const GUID, flags: u32 ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§