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