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