[][src]Struct winapi::um::taskschd::ITaskNamedValueCollection

#[repr(C)]pub struct ITaskNamedValueCollection {
    pub lpVtbl: *const ITaskNamedValueCollectionVtbl,
}

Fields

lpVtbl: *const ITaskNamedValueCollectionVtbl

Implementations

impl ITaskNamedValueCollection[src]

pub unsafe fn get_Count(&self, pCount: *mut c_long) -> HRESULT[src]

pub unsafe fn get_Item(
    &self,
    index: LONG,
    ppPair: *mut *mut ITaskNamedValuePair
) -> HRESULT
[src]

pub unsafe fn get__NewEnum(&self, ppEnum: *mut LPUNKNOWN) -> HRESULT[src]

pub unsafe fn Create(
    &self,
    Name: BSTR,
    Value: BSTR,
    ppPair: *mut *mut ITaskNamedValuePair
) -> HRESULT
[src]

pub unsafe fn Remove(&self, index: LONG) -> HRESULT[src]

pub unsafe fn Clear(&self) -> HRESULT[src]

Methods from Deref<Target = IDispatch>

pub unsafe fn GetTypeInfoCount(&self, pctinfo: *mut UINT) -> HRESULT[src]

pub unsafe fn GetTypeInfo(
    &self,
    iTInfo: UINT,
    lcid: LCID,
    ppTInfo: *mut *mut ITypeInfo
) -> HRESULT
[src]

pub unsafe fn GetIDsOfNames(
    &self,
    riid: REFIID,
    rgszNames: *mut LPOLESTR,
    cNames: UINT,
    lcid: LCID,
    rgDispId: *mut DISPID
) -> HRESULT
[src]

pub unsafe fn Invoke(
    &self,
    dispIdMember: DISPID,
    riid: REFIID,
    lcid: LCID,
    wFlags: WORD,
    pDispParams: *mut DISPPARAMS,
    pVarResult: *mut VARIANT,
    pExcepInfo: *mut EXCEPINFO,
    puArgErr: *mut UINT
) -> HRESULT
[src]

Trait Implementations

impl Deref for ITaskNamedValueCollection[src]

type Target = IDispatch

The resulting type after dereferencing.

impl Interface for ITaskNamedValueCollection[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.