#[repr(C)]
pub struct ITriggerCollectionVtbl {
    pub parent: IDispatchVtbl,
    pub get_Count: unsafe extern "system" fn(This: *mut ITriggerCollection, pCount: *mut c_long) -> HRESULT,
    pub get_Item: unsafe extern "system" fn(This: *mut ITriggerCollection, index: c_long, ppTrigger: *mut *mut ITrigger) -> HRESULT,
    pub get__NewEnum: unsafe extern "system" fn(This: *mut ITriggerCollection, ppEnum: *mut LPUNKNOWN) -> HRESULT,
    pub Create: unsafe extern "system" fn(This: *mut ITriggerCollection, Type: TASK_TRIGGER_TYPE2, ppTrigger: *mut *mut ITrigger) -> HRESULT,
    pub Remove: unsafe extern "system" fn(This: *mut ITriggerCollection, index: VARIANT) -> HRESULT,
    pub Clear: unsafe extern "system" fn(This: *mut ITriggerCollection) -> HRESULT,
}
impl<T> Any for T where
    T: 'static + ?Sized, 
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more
impl<T, U> Into<U> for T where
    U: From<T>, 
The type returned in the event of a conversion error.
The type returned in the event of a conversion error.