[][src]Struct CCODE::IXMLElementVtbl

#[repr(C)]pub struct IXMLElementVtbl {
    pub QueryInterface: Option<unsafe extern "C" fn(This: *mut IXMLElement, riid: *const IID, ppvObject: *mut *mut c_void) -> HRESULT>,
    pub AddRef: Option<unsafe extern "C" fn(This: *mut IXMLElement) -> ULONG>,
    pub Release: Option<unsafe extern "C" fn(This: *mut IXMLElement) -> ULONG>,
    pub GetTypeInfoCount: Option<unsafe extern "C" fn(This: *mut IXMLElement, pctinfo: *mut UINT) -> HRESULT>,
    pub GetTypeInfo: Option<unsafe extern "C" fn(This: *mut IXMLElement, iTInfo: UINT, lcid: LCID, ppTInfo: *mut *mut ITypeInfo) -> HRESULT>,
    pub GetIDsOfNames: Option<unsafe extern "C" fn(This: *mut IXMLElement, riid: *const IID, rgszNames: *mut LPOLESTR, cNames: UINT, lcid: LCID, rgDispId: *mut DISPID) -> HRESULT>,
    pub Invoke: Option<unsafe extern "C" fn(This: *mut IXMLElement, dispIdMember: DISPID, riid: *const IID, lcid: LCID, wFlags: WORD, pDispParams: *mut DISPPARAMS, pVarResult: *mut VARIANT, pExcepInfo: *mut EXCEPINFO, puArgErr: *mut UINT) -> HRESULT>,
    pub get_tagName: Option<unsafe extern "C" fn(This: *mut IXMLElement, p: *mut BSTR) -> HRESULT>,
    pub put_tagName: Option<unsafe extern "C" fn(This: *mut IXMLElement, p: BSTR) -> HRESULT>,
    pub get_parent: Option<unsafe extern "C" fn(This: *mut IXMLElement, ppParent: *mut *mut IXMLElement) -> HRESULT>,
    pub setAttribute: Option<unsafe extern "C" fn(This: *mut IXMLElement, strPropertyName: BSTR, PropertyValue: VARIANT) -> HRESULT>,
    pub getAttribute: Option<unsafe extern "C" fn(This: *mut IXMLElement, strPropertyName: BSTR, PropertyValue: *mut VARIANT) -> HRESULT>,
    pub removeAttribute: Option<unsafe extern "C" fn(This: *mut IXMLElement, strPropertyName: BSTR) -> HRESULT>,
    pub get_children: Option<unsafe extern "C" fn(This: *mut IXMLElement, pp: *mut *mut IXMLElementCollection) -> HRESULT>,
    pub get_type: Option<unsafe extern "C" fn(This: *mut IXMLElement, plType: *mut c_long) -> HRESULT>,
    pub get_text: Option<unsafe extern "C" fn(This: *mut IXMLElement, p: *mut BSTR) -> HRESULT>,
    pub put_text: Option<unsafe extern "C" fn(This: *mut IXMLElement, p: BSTR) -> HRESULT>,
    pub addChild: Option<unsafe extern "C" fn(This: *mut IXMLElement, pChildElem: *mut IXMLElement, lIndex: c_long, lReserved: c_long) -> HRESULT>,
    pub removeChild: Option<unsafe extern "C" fn(This: *mut IXMLElement, pChildElem: *mut IXMLElement) -> HRESULT>,
}

Fields

QueryInterface: Option<unsafe extern "C" fn(This: *mut IXMLElement, riid: *const IID, ppvObject: *mut *mut c_void) -> HRESULT>AddRef: Option<unsafe extern "C" fn(This: *mut IXMLElement) -> ULONG>Release: Option<unsafe extern "C" fn(This: *mut IXMLElement) -> ULONG>GetTypeInfoCount: Option<unsafe extern "C" fn(This: *mut IXMLElement, pctinfo: *mut UINT) -> HRESULT>GetTypeInfo: Option<unsafe extern "C" fn(This: *mut IXMLElement, iTInfo: UINT, lcid: LCID, ppTInfo: *mut *mut ITypeInfo) -> HRESULT>GetIDsOfNames: Option<unsafe extern "C" fn(This: *mut IXMLElement, riid: *const IID, rgszNames: *mut LPOLESTR, cNames: UINT, lcid: LCID, rgDispId: *mut DISPID) -> HRESULT>Invoke: Option<unsafe extern "C" fn(This: *mut IXMLElement, dispIdMember: DISPID, riid: *const IID, lcid: LCID, wFlags: WORD, pDispParams: *mut DISPPARAMS, pVarResult: *mut VARIANT, pExcepInfo: *mut EXCEPINFO, puArgErr: *mut UINT) -> HRESULT>get_tagName: Option<unsafe extern "C" fn(This: *mut IXMLElement, p: *mut BSTR) -> HRESULT>put_tagName: Option<unsafe extern "C" fn(This: *mut IXMLElement, p: BSTR) -> HRESULT>get_parent: Option<unsafe extern "C" fn(This: *mut IXMLElement, ppParent: *mut *mut IXMLElement) -> HRESULT>setAttribute: Option<unsafe extern "C" fn(This: *mut IXMLElement, strPropertyName: BSTR, PropertyValue: VARIANT) -> HRESULT>getAttribute: Option<unsafe extern "C" fn(This: *mut IXMLElement, strPropertyName: BSTR, PropertyValue: *mut VARIANT) -> HRESULT>removeAttribute: Option<unsafe extern "C" fn(This: *mut IXMLElement, strPropertyName: BSTR) -> HRESULT>get_children: Option<unsafe extern "C" fn(This: *mut IXMLElement, pp: *mut *mut IXMLElementCollection) -> HRESULT>get_type: Option<unsafe extern "C" fn(This: *mut IXMLElement, plType: *mut c_long) -> HRESULT>get_text: Option<unsafe extern "C" fn(This: *mut IXMLElement, p: *mut BSTR) -> HRESULT>put_text: Option<unsafe extern "C" fn(This: *mut IXMLElement, p: BSTR) -> HRESULT>addChild: Option<unsafe extern "C" fn(This: *mut IXMLElement, pChildElem: *mut IXMLElement, lIndex: c_long, lReserved: c_long) -> HRESULT>removeChild: Option<unsafe extern "C" fn(This: *mut IXMLElement, pChildElem: *mut IXMLElement) -> HRESULT>

Trait Implementations

impl Clone for IXMLElementVtbl[src]

impl Copy for IXMLElementVtbl[src]

impl Debug for IXMLElementVtbl[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.