pub trait IInstallationAgent_Impl: Sized + IDispatch_Impl {
    // Required method
    fn RecordInstallationResult(
        &self,
        installationresultcookie: &BSTR,
        hresult: i32,
        extendedreportingdata: Option<&IStringCollection>
    ) -> Result<()>;
}

Required Methods§

fn RecordInstallationResult( &self, installationresultcookie: &BSTR, hresult: i32, extendedreportingdata: Option<&IStringCollection> ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§