#[repr(C)]pub struct IDispatchVtbl {
pub QueryInterface: Option<unsafe extern "C" fn(This: *mut IDispatch, riid: *const IID, ppvObject: *mut *mut c_void) -> HRESULT>,
pub AddRef: Option<unsafe extern "C" fn(This: *mut IDispatch) -> ULONG>,
pub Release: Option<unsafe extern "C" fn(This: *mut IDispatch) -> ULONG>,
pub GetTypeInfoCount: Option<unsafe extern "C" fn(This: *mut IDispatch, pctinfo: *mut UINT) -> HRESULT>,
pub GetTypeInfo: Option<unsafe extern "C" fn(This: *mut IDispatch, iTInfo: UINT, lcid: LCID, ppTInfo: *mut *mut ITypeInfo) -> HRESULT>,
pub GetIDsOfNames: Option<unsafe extern "C" fn(This: *mut IDispatch, riid: *const IID, rgszNames: *mut LPOLESTR, cNames: UINT, lcid: LCID, rgDispId: *mut DISPID) -> HRESULT>,
pub Invoke: Option<unsafe extern "C" fn(This: *mut IDispatch, dispIdMember: DISPID, riid: *const IID, lcid: LCID, wFlags: WORD, pDispParams: *mut DISPPARAMS, pVarResult: *mut VARIANT, pExcepInfo: *mut EXCEPINFO, puArgErr: *mut UINT) -> HRESULT>,
}
Fields§
§QueryInterface: Option<unsafe extern "C" fn(This: *mut IDispatch, riid: *const IID, ppvObject: *mut *mut c_void) -> HRESULT>
§AddRef: Option<unsafe extern "C" fn(This: *mut IDispatch) -> ULONG>
§Release: Option<unsafe extern "C" fn(This: *mut IDispatch) -> ULONG>
§GetTypeInfoCount: Option<unsafe extern "C" fn(This: *mut IDispatch, pctinfo: *mut UINT) -> HRESULT>
§GetTypeInfo: Option<unsafe extern "C" fn(This: *mut IDispatch, iTInfo: UINT, lcid: LCID, ppTInfo: *mut *mut ITypeInfo) -> HRESULT>
§GetIDsOfNames: Option<unsafe extern "C" fn(This: *mut IDispatch, riid: *const IID, rgszNames: *mut LPOLESTR, cNames: UINT, lcid: LCID, rgDispId: *mut DISPID) -> HRESULT>
§Invoke: Option<unsafe extern "C" fn(This: *mut IDispatch, dispIdMember: DISPID, riid: *const IID, lcid: LCID, wFlags: WORD, pDispParams: *mut DISPPARAMS, pVarResult: *mut VARIANT, pExcepInfo: *mut EXCEPINFO, puArgErr: *mut UINT) -> HRESULT>
Trait Implementations§
Source§impl Clone for IDispatchVtbl
impl Clone for IDispatchVtbl
Source§fn clone(&self) -> IDispatchVtbl
fn clone(&self) -> IDispatchVtbl
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for IDispatchVtbl
impl Debug for IDispatchVtbl
Source§impl Ord for IDispatchVtbl
impl Ord for IDispatchVtbl
Source§fn cmp(&self, other: &IDispatchVtbl) -> Ordering
fn cmp(&self, other: &IDispatchVtbl) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for IDispatchVtbl
impl PartialEq for IDispatchVtbl
Source§impl PartialOrd for IDispatchVtbl
impl PartialOrd for IDispatchVtbl
impl Copy for IDispatchVtbl
impl Eq for IDispatchVtbl
impl StructuralPartialEq for IDispatchVtbl
Auto Trait Implementations§
impl Freeze for IDispatchVtbl
impl RefUnwindSafe for IDispatchVtbl
impl Send for IDispatchVtbl
impl Sync for IDispatchVtbl
impl Unpin for IDispatchVtbl
impl UnwindSafe for IDispatchVtbl
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more