#[repr(C)]pub struct ITypeCompVtbl {
pub QueryInterface: Option<unsafe extern "C" fn(This: *mut ITypeComp, riid: *const IID, ppvObject: *mut *mut c_void) -> HRESULT>,
pub AddRef: Option<unsafe extern "C" fn(This: *mut ITypeComp) -> ULONG>,
pub Release: Option<unsafe extern "C" fn(This: *mut ITypeComp) -> ULONG>,
pub Bind: Option<unsafe extern "C" fn(This: *mut ITypeComp, szName: LPOLESTR, lHashVal: ULONG, wFlags: WORD, ppTInfo: *mut *mut ITypeInfo, pDescKind: *mut DESCKIND, pBindPtr: *mut BINDPTR) -> HRESULT>,
pub BindType: Option<unsafe extern "C" fn(This: *mut ITypeComp, szName: LPOLESTR, lHashVal: ULONG, ppTInfo: *mut *mut ITypeInfo, ppTComp: *mut *mut ITypeComp) -> HRESULT>,
}
Fields§
§QueryInterface: Option<unsafe extern "C" fn(This: *mut ITypeComp, riid: *const IID, ppvObject: *mut *mut c_void) -> HRESULT>
§AddRef: Option<unsafe extern "C" fn(This: *mut ITypeComp) -> ULONG>
§Release: Option<unsafe extern "C" fn(This: *mut ITypeComp) -> ULONG>
§Bind: Option<unsafe extern "C" fn(This: *mut ITypeComp, szName: LPOLESTR, lHashVal: ULONG, wFlags: WORD, ppTInfo: *mut *mut ITypeInfo, pDescKind: *mut DESCKIND, pBindPtr: *mut BINDPTR) -> HRESULT>
§BindType: Option<unsafe extern "C" fn(This: *mut ITypeComp, szName: LPOLESTR, lHashVal: ULONG, ppTInfo: *mut *mut ITypeInfo, ppTComp: *mut *mut ITypeComp) -> HRESULT>
Trait Implementations§
Source§impl Clone for ITypeCompVtbl
impl Clone for ITypeCompVtbl
Source§fn clone(&self) -> ITypeCompVtbl
fn clone(&self) -> ITypeCompVtbl
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 ITypeCompVtbl
impl Debug for ITypeCompVtbl
Source§impl Ord for ITypeCompVtbl
impl Ord for ITypeCompVtbl
Source§fn cmp(&self, other: &ITypeCompVtbl) -> Ordering
fn cmp(&self, other: &ITypeCompVtbl) -> 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 ITypeCompVtbl
impl PartialEq for ITypeCompVtbl
Source§impl PartialOrd for ITypeCompVtbl
impl PartialOrd for ITypeCompVtbl
impl Copy for ITypeCompVtbl
impl Eq for ITypeCompVtbl
impl StructuralPartialEq for ITypeCompVtbl
Auto Trait Implementations§
impl Freeze for ITypeCompVtbl
impl RefUnwindSafe for ITypeCompVtbl
impl Send for ITypeCompVtbl
impl Sync for ITypeCompVtbl
impl Unpin for ITypeCompVtbl
impl UnwindSafe for ITypeCompVtbl
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