pub trait IDownloadBehavior_Impl: Sized + IDispatch_Impl {
    // Required method
    fn startDownload(
        &self,
        bstrurl: &BSTR,
        pdispcallback: Option<&IDispatch>
    ) -> Result<()>;
}

Required Methods§

fn startDownload( &self, bstrurl: &BSTR, pdispcallback: Option<&IDispatch> ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§