pub trait ISWbemObjectSet_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn _NewEnum(&self) -> Result<IUnknown>;
    fn Item(&self, strobjectpath: &BSTR, iflags: i32) -> Result<ISWbemObject>;
    fn Count(&self) -> Result<i32>;
    fn Security_(&self) -> Result<ISWbemSecurity>;
    fn ItemIndex(&self, lindex: i32) -> Result<ISWbemObject>;
}

Required Methods§

fn _NewEnum(&self) -> Result<IUnknown>

fn Item(&self, strobjectpath: &BSTR, iflags: i32) -> Result<ISWbemObject>

fn Count(&self) -> Result<i32>

fn Security_(&self) -> Result<ISWbemSecurity>

fn ItemIndex(&self, lindex: i32) -> Result<ISWbemObject>

Object Safety§

This trait is not object safe.

Implementors§