[][src]Struct CCODE::IXMLElementCollectionVtbl

#[repr(C)]pub struct IXMLElementCollectionVtbl {
    pub QueryInterface: Option<unsafe extern "C" fn(This: *mut IXMLElementCollection, riid: *const IID, ppvObject: *mut *mut c_void) -> HRESULT>,
    pub AddRef: Option<unsafe extern "C" fn(This: *mut IXMLElementCollection) -> ULONG>,
    pub Release: Option<unsafe extern "C" fn(This: *mut IXMLElementCollection) -> ULONG>,
    pub GetTypeInfoCount: Option<unsafe extern "C" fn(This: *mut IXMLElementCollection, pctinfo: *mut UINT) -> HRESULT>,
    pub GetTypeInfo: Option<unsafe extern "C" fn(This: *mut IXMLElementCollection, iTInfo: UINT, lcid: LCID, ppTInfo: *mut *mut ITypeInfo) -> HRESULT>,
    pub GetIDsOfNames: Option<unsafe extern "C" fn(This: *mut IXMLElementCollection, riid: *const IID, rgszNames: *mut LPOLESTR, cNames: UINT, lcid: LCID, rgDispId: *mut DISPID) -> HRESULT>,
    pub Invoke: Option<unsafe extern "C" fn(This: *mut IXMLElementCollection, dispIdMember: DISPID, riid: *const IID, lcid: LCID, wFlags: WORD, pDispParams: *mut DISPPARAMS, pVarResult: *mut VARIANT, pExcepInfo: *mut EXCEPINFO, puArgErr: *mut UINT) -> HRESULT>,
    pub put_length: Option<unsafe extern "C" fn(This: *mut IXMLElementCollection, v: c_long) -> HRESULT>,
    pub get_length: Option<unsafe extern "C" fn(This: *mut IXMLElementCollection, p: *mut c_long) -> HRESULT>,
    pub get__newEnum: Option<unsafe extern "C" fn(This: *mut IXMLElementCollection, ppUnk: *mut *mut IUnknown) -> HRESULT>,
    pub item: Option<unsafe extern "C" fn(This: *mut IXMLElementCollection, var1: VARIANT, var2: VARIANT, ppDisp: *mut *mut IDispatch) -> HRESULT>,
}

Fields

QueryInterface: Option<unsafe extern "C" fn(This: *mut IXMLElementCollection, riid: *const IID, ppvObject: *mut *mut c_void) -> HRESULT>AddRef: Option<unsafe extern "C" fn(This: *mut IXMLElementCollection) -> ULONG>Release: Option<unsafe extern "C" fn(This: *mut IXMLElementCollection) -> ULONG>GetTypeInfoCount: Option<unsafe extern "C" fn(This: *mut IXMLElementCollection, pctinfo: *mut UINT) -> HRESULT>GetTypeInfo: Option<unsafe extern "C" fn(This: *mut IXMLElementCollection, iTInfo: UINT, lcid: LCID, ppTInfo: *mut *mut ITypeInfo) -> HRESULT>GetIDsOfNames: Option<unsafe extern "C" fn(This: *mut IXMLElementCollection, riid: *const IID, rgszNames: *mut LPOLESTR, cNames: UINT, lcid: LCID, rgDispId: *mut DISPID) -> HRESULT>Invoke: Option<unsafe extern "C" fn(This: *mut IXMLElementCollection, dispIdMember: DISPID, riid: *const IID, lcid: LCID, wFlags: WORD, pDispParams: *mut DISPPARAMS, pVarResult: *mut VARIANT, pExcepInfo: *mut EXCEPINFO, puArgErr: *mut UINT) -> HRESULT>put_length: Option<unsafe extern "C" fn(This: *mut IXMLElementCollection, v: c_long) -> HRESULT>get_length: Option<unsafe extern "C" fn(This: *mut IXMLElementCollection, p: *mut c_long) -> HRESULT>get__newEnum: Option<unsafe extern "C" fn(This: *mut IXMLElementCollection, ppUnk: *mut *mut IUnknown) -> HRESULT>item: Option<unsafe extern "C" fn(This: *mut IXMLElementCollection, var1: VARIANT, var2: VARIANT, ppDisp: *mut *mut IDispatch) -> HRESULT>

Trait Implementations

impl Clone for IXMLElementCollectionVtbl[src]

impl Copy for IXMLElementCollectionVtbl[src]

impl Debug for IXMLElementCollectionVtbl[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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.