Trait IEventObjectCollection_Impl
pub trait IEventObjectCollection_Impl: 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<()>
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.