#[repr(C)]
pub struct ITaskNamedValueCollectionVtbl {
    pub parent: IDispatchVtbl,
    pub get_Count: unsafe extern "system" fn(This: *mut ITaskNamedValueCollection, pCount: *mut c_long) -> HRESULT,
    pub get_Item: unsafe extern "system" fn(This: *mut ITaskNamedValueCollection, index: LONG, ppPair: *mut *mut ITaskNamedValuePair) -> HRESULT,
    pub get__NewEnum: unsafe extern "system" fn(This: *mut ITaskNamedValueCollection, ppEnum: *mut LPUNKNOWN) -> HRESULT,
    pub Create: unsafe extern "system" fn(This: *mut ITaskNamedValueCollection, Name: BSTR, Value: BSTR, ppPair: *mut *mut ITaskNamedValuePair) -> HRESULT,
    pub Remove: unsafe extern "system" fn(This: *mut ITaskNamedValueCollection, index: LONG) -> HRESULT,
    pub Clear: unsafe extern "system" fn(This: *mut ITaskNamedValueCollection) -> 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.