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