pub trait IEventObjectCollection_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn _NewEnum(&self) -> Result<IUnknown>;
    fn get_Item(&self, objectid: &BSTR) -> Result<VARIANT>;
    fn NewEnum(&self) -> Result<IEnumEventObject>;
    fn Count(&self) -> Result<i32>;
    fn Add(&self, item: *const VARIANT, objectid: &BSTR) -> Result<()>;
    fn Remove(&self, objectid: &BSTR) -> Result<()>;
}

Required Methods§

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

fn get_Item(&self, objectid: &BSTR) -> Result<VARIANT>

fn NewEnum(&self) -> Result<IEnumEventObject>

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

fn Add(&self, item: *const VARIANT, objectid: &BSTR) -> Result<()>

fn Remove(&self, objectid: &BSTR) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§