Trait IWbemPropertyProvider_Impl
pub trait IWbemPropertyProvider_Impl: IUnknownImpl {
// 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<()>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.