#[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,
}Fields§
§parent: IDispatchVtbl§get_Count: unsafe extern "system" fn(This: *mut ITriggerCollection, pCount: *mut c_long) -> HRESULT§get_Item: unsafe extern "system" fn(This: *mut ITriggerCollection, index: c_long, ppTrigger: *mut *mut ITrigger) -> HRESULT§get__NewEnum: unsafe extern "system" fn(This: *mut ITriggerCollection, ppEnum: *mut LPUNKNOWN) -> HRESULT§Create: unsafe extern "system" fn(This: *mut ITriggerCollection, Type: TASK_TRIGGER_TYPE2, ppTrigger: *mut *mut ITrigger) -> HRESULT§Remove: unsafe extern "system" fn(This: *mut ITriggerCollection, index: VARIANT) -> HRESULT§Clear: unsafe extern "system" fn(This: *mut ITriggerCollection) -> HRESULTAuto Trait Implementations§
impl Freeze for ITriggerCollectionVtbl
impl RefUnwindSafe for ITriggerCollectionVtbl
impl Send for ITriggerCollectionVtbl
impl Sync for ITriggerCollectionVtbl
impl Unpin for ITriggerCollectionVtbl
impl UnwindSafe for ITriggerCollectionVtbl
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more