pub trait IDownloadManager_Impl: Sized {
    // Required method
    fn Download(
        &self,
        pmk: Option<&IMoniker>,
        pbc: Option<&IBindCtx>,
        dwbindverb: u32,
        grfbindf: i32,
        pbindinfo: *const BINDINFO,
        pszheaders: &PCWSTR,
        pszredir: &PCWSTR,
        uicp: u32
    ) -> Result<()>;
}

Required Methods§

fn Download( &self, pmk: Option<&IMoniker>, pbc: Option<&IBindCtx>, dwbindverb: u32, grfbindf: i32, pbindinfo: *const BINDINFO, pszheaders: &PCWSTR, pszredir: &PCWSTR, uicp: u32 ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§