#[repr(C)]pub struct ITypeFactoryVtbl {
pub QueryInterface: Option<unsafe extern "C" fn(This: *mut ITypeFactory, riid: *const IID, ppvObject: *mut *mut c_void) -> HRESULT>,
pub AddRef: Option<unsafe extern "C" fn(This: *mut ITypeFactory) -> ULONG>,
pub Release: Option<unsafe extern "C" fn(This: *mut ITypeFactory) -> ULONG>,
pub CreateFromTypeInfo: Option<unsafe extern "C" fn(This: *mut ITypeFactory, pTypeInfo: *mut ITypeInfo, riid: *const IID, ppv: *mut *mut IUnknown) -> HRESULT>,
}
Fields§
§QueryInterface: Option<unsafe extern "C" fn(This: *mut ITypeFactory, riid: *const IID, ppvObject: *mut *mut c_void) -> HRESULT>
§AddRef: Option<unsafe extern "C" fn(This: *mut ITypeFactory) -> ULONG>
§Release: Option<unsafe extern "C" fn(This: *mut ITypeFactory) -> ULONG>
§CreateFromTypeInfo: Option<unsafe extern "C" fn(This: *mut ITypeFactory, pTypeInfo: *mut ITypeInfo, riid: *const IID, ppv: *mut *mut IUnknown) -> HRESULT>
Trait Implementations§
Source§impl Clone for ITypeFactoryVtbl
impl Clone for ITypeFactoryVtbl
Source§fn clone(&self) -> ITypeFactoryVtbl
fn clone(&self) -> ITypeFactoryVtbl
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 ITypeFactoryVtbl
impl Debug for ITypeFactoryVtbl
Source§impl Ord for ITypeFactoryVtbl
impl Ord for ITypeFactoryVtbl
Source§fn cmp(&self, other: &ITypeFactoryVtbl) -> Ordering
fn cmp(&self, other: &ITypeFactoryVtbl) -> 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 ITypeFactoryVtbl
impl PartialEq for ITypeFactoryVtbl
Source§impl PartialOrd for ITypeFactoryVtbl
impl PartialOrd for ITypeFactoryVtbl
impl Copy for ITypeFactoryVtbl
impl Eq for ITypeFactoryVtbl
impl StructuralPartialEq for ITypeFactoryVtbl
Auto Trait Implementations§
impl Freeze for ITypeFactoryVtbl
impl RefUnwindSafe for ITypeFactoryVtbl
impl Send for ITypeFactoryVtbl
impl Sync for ITypeFactoryVtbl
impl Unpin for ITypeFactoryVtbl
impl UnwindSafe for ITypeFactoryVtbl
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