Trait ITriggerCollection_Impl
pub trait ITriggerCollection_Impl: IDispatch_Impl {
// Required methods
fn Count(&self, pcount: *mut i32) -> Result<()>;
fn get_Item(&self, index: i32) -> Result<ITrigger>;
fn _NewEnum(&self) -> Result<IUnknown>;
fn Create(&self, type: TASK_TRIGGER_TYPE2) -> Result<ITrigger>;
fn Remove(&self, index: &VARIANT) -> Result<()>;
fn Clear(&self) -> Result<()>;
}
Required Methods§
fn Count(&self, pcount: *mut i32) -> Result<()>
fn get_Item(&self, index: i32) -> Result<ITrigger>
fn _NewEnum(&self) -> Result<IUnknown>
fn Create(&self, type: TASK_TRIGGER_TYPE2) -> Result<ITrigger>
fn Remove(&self, index: &VARIANT) -> Result<()>
fn Clear(&self) -> 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.