pub trait ISWbemPropertySet_Impl: Sized + 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<()>

Object Safety§

This trait is not object safe.

Implementors§