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