pub trait ISWbemMethodSet_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn _NewEnum(&self) -> Result<IUnknown>;
    fn Item(&self, strname: &BSTR, iflags: i32) -> Result<ISWbemMethod>;
    fn Count(&self) -> Result<i32>;
}

Required Methods§

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

fn Item(&self, strname: &BSTR, iflags: i32) -> Result<ISWbemMethod>

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

Object Safety§

This trait is not object safe.

Implementors§