pub trait IWbemPropertyProvider_Impl: Sized {
    // Required methods
    fn GetProperty(
        &self,
        lflags: i32,
        strlocale: &BSTR,
        strclassmapping: &BSTR,
        strinstmapping: &BSTR,
        strpropmapping: &BSTR
    ) -> Result<VARIANT>;
    fn PutProperty(
        &self,
        lflags: i32,
        strlocale: &BSTR,
        strclassmapping: &BSTR,
        strinstmapping: &BSTR,
        strpropmapping: &BSTR,
        pvvalue: *const VARIANT
    ) -> Result<()>;
}

Required Methods§

fn GetProperty( &self, lflags: i32, strlocale: &BSTR, strclassmapping: &BSTR, strinstmapping: &BSTR, strpropmapping: &BSTR ) -> Result<VARIANT>

fn PutProperty( &self, lflags: i32, strlocale: &BSTR, strclassmapping: &BSTR, strinstmapping: &BSTR, strpropmapping: &BSTR, pvvalue: *const VARIANT ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§