pub trait IWbemDecoupledRegistrar_Impl: Sized {
    // Required methods
    fn Register(
        &self,
        a_flags: i32,
        a_context: Option<&IWbemContext>,
        a_user: &PCWSTR,
        a_locale: &PCWSTR,
        a_scope: &PCWSTR,
        a_registration: &PCWSTR,
        piunknown: Option<&IUnknown>
    ) -> Result<()>;
    fn UnRegister(&self) -> Result<()>;
}

Required Methods§

fn Register( &self, a_flags: i32, a_context: Option<&IWbemContext>, a_user: &PCWSTR, a_locale: &PCWSTR, a_scope: &PCWSTR, a_registration: &PCWSTR, piunknown: Option<&IUnknown> ) -> Result<()>

fn UnRegister(&self) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§