pub trait IWbemProviderInit_Impl: Sized {
    // Required method
    fn Initialize(
        &self,
        wszuser: &PCWSTR,
        lflags: i32,
        wsznamespace: &PCWSTR,
        wszlocale: &PCWSTR,
        pnamespace: Option<&IWbemServices>,
        pctx: Option<&IWbemContext>,
        pinitsink: Option<&IWbemProviderInitSink>
    ) -> Result<()>;
}

Required Methods§

fn Initialize( &self, wszuser: &PCWSTR, lflags: i32, wsznamespace: &PCWSTR, wszlocale: &PCWSTR, pnamespace: Option<&IWbemServices>, pctx: Option<&IWbemContext>, pinitsink: Option<&IWbemProviderInitSink> ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§