Trait ISWbemPropertySet_Impl
pub trait ISWbemPropertySet_Impl: IDispatch_Impl {
// Required methods
fn _NewEnum(&self) -> Result<IUnknown>;
fn Item(&self, strname: &BSTR, iflags: i32) -> Result<ISWbemProperty>;
fn Count(&self) -> Result<i32>;
fn Add(
&self,
strname: &BSTR,
icimtype: WbemCimtypeEnum,
bisarray: VARIANT_BOOL,
iflags: i32,
) -> Result<ISWbemProperty>;
fn Remove(&self, strname: &BSTR, iflags: i32) -> Result<()>;
}
Required Methods§
fn _NewEnum(&self) -> Result<IUnknown>
fn Item(&self, strname: &BSTR, iflags: i32) -> Result<ISWbemProperty>
fn Count(&self) -> Result<i32>
fn Add( &self, strname: &BSTR, icimtype: WbemCimtypeEnum, bisarray: VARIANT_BOOL, iflags: i32, ) -> Result<ISWbemProperty>
fn Remove(&self, strname: &BSTR, iflags: i32) -> 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.