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

Fields§

§QueryInterface: Option<unsafe extern "stdcall" fn(This: *mut IXMLElement, riid: *const IID, ppvObject: *mut *mut c_void) -> HRESULT>§AddRef: Option<unsafe extern "stdcall" fn(This: *mut IXMLElement) -> ULONG>§Release: Option<unsafe extern "stdcall" fn(This: *mut IXMLElement) -> ULONG>§GetTypeInfoCount: Option<unsafe extern "stdcall" fn(This: *mut IXMLElement, pctinfo: *mut UINT) -> HRESULT>§GetTypeInfo: Option<unsafe extern "stdcall" fn(This: *mut IXMLElement, iTInfo: UINT, lcid: LCID, ppTInfo: *mut *mut ITypeInfo) -> HRESULT>§GetIDsOfNames: Option<unsafe extern "stdcall" fn(This: *mut IXMLElement, riid: *const IID, rgszNames: *mut LPOLESTR, cNames: UINT, lcid: LCID, rgDispId: *mut DISPID) -> HRESULT>§Invoke: Option<unsafe extern "stdcall" 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 "stdcall" fn(This: *mut IXMLElement, p: *mut BSTR) -> HRESULT>§put_tagName: Option<unsafe extern "stdcall" fn(This: *mut IXMLElement, p: BSTR) -> HRESULT>§get_parent: Option<unsafe extern "stdcall" fn(This: *mut IXMLElement, ppParent: *mut *mut IXMLElement) -> HRESULT>§setAttribute: Option<unsafe extern "stdcall" fn(This: *mut IXMLElement, strPropertyName: BSTR, PropertyValue: VARIANT) -> HRESULT>§getAttribute: Option<unsafe extern "stdcall" fn(This: *mut IXMLElement, strPropertyName: BSTR, PropertyValue: *mut VARIANT) -> HRESULT>§removeAttribute: Option<unsafe extern "stdcall" fn(This: *mut IXMLElement, strPropertyName: BSTR) -> HRESULT>§get_children: Option<unsafe extern "stdcall" fn(This: *mut IXMLElement, pp: *mut *mut IXMLElementCollection) -> HRESULT>§get_type: Option<unsafe extern "stdcall" fn(This: *mut IXMLElement, plType: *mut c_long) -> HRESULT>§get_text: Option<unsafe extern "stdcall" fn(This: *mut IXMLElement, p: *mut BSTR) -> HRESULT>§put_text: Option<unsafe extern "stdcall" fn(This: *mut IXMLElement, p: BSTR) -> HRESULT>§addChild: Option<unsafe extern "stdcall" fn(This: *mut IXMLElement, pChildElem: *mut IXMLElement, lIndex: c_long, lReserved: c_long) -> HRESULT>§removeChild: Option<unsafe extern "stdcall" fn(This: *mut IXMLElement, pChildElem: *mut IXMLElement) -> HRESULT>

Trait Implementations§

source§

impl Clone for IXMLElementVtbl

source§

fn clone(&self) -> IXMLElementVtbl

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Copy for IXMLElementVtbl

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.