#[repr(C)]pub struct IRpcStubBufferVtbl {
pub QueryInterface: Option<unsafe extern "C" fn(This: *mut IRpcStubBuffer, riid: *const IID, ppvObject: *mut *mut c_void) -> HRESULT>,
pub AddRef: Option<unsafe extern "C" fn(This: *mut IRpcStubBuffer) -> ULONG>,
pub Release: Option<unsafe extern "C" fn(This: *mut IRpcStubBuffer) -> ULONG>,
pub Connect: Option<unsafe extern "C" fn(This: *mut IRpcStubBuffer, pUnkServer: *mut IUnknown) -> HRESULT>,
pub Disconnect: Option<unsafe extern "C" fn(This: *mut IRpcStubBuffer)>,
pub Invoke: Option<unsafe extern "C" fn(This: *mut IRpcStubBuffer, _prpcmsg: *mut RPCOLEMESSAGE, _pRpcChannelBuffer: *mut IRpcChannelBuffer) -> HRESULT>,
pub IsIIDSupported: Option<unsafe extern "C" fn(This: *mut IRpcStubBuffer, riid: *const IID) -> *mut IRpcStubBuffer>,
pub CountRefs: Option<unsafe extern "C" fn(This: *mut IRpcStubBuffer) -> ULONG>,
pub DebugServerQueryInterface: Option<unsafe extern "C" fn(This: *mut IRpcStubBuffer, ppv: *mut *mut c_void) -> HRESULT>,
pub DebugServerRelease: Option<unsafe extern "C" fn(This: *mut IRpcStubBuffer, pv: *mut c_void)>,
}
Fields§
§QueryInterface: Option<unsafe extern "C" fn(This: *mut IRpcStubBuffer, riid: *const IID, ppvObject: *mut *mut c_void) -> HRESULT>
§AddRef: Option<unsafe extern "C" fn(This: *mut IRpcStubBuffer) -> ULONG>
§Release: Option<unsafe extern "C" fn(This: *mut IRpcStubBuffer) -> ULONG>
§Connect: Option<unsafe extern "C" fn(This: *mut IRpcStubBuffer, pUnkServer: *mut IUnknown) -> HRESULT>
§Disconnect: Option<unsafe extern "C" fn(This: *mut IRpcStubBuffer)>
§Invoke: Option<unsafe extern "C" fn(This: *mut IRpcStubBuffer, _prpcmsg: *mut RPCOLEMESSAGE, _pRpcChannelBuffer: *mut IRpcChannelBuffer) -> HRESULT>
§IsIIDSupported: Option<unsafe extern "C" fn(This: *mut IRpcStubBuffer, riid: *const IID) -> *mut IRpcStubBuffer>
§CountRefs: Option<unsafe extern "C" fn(This: *mut IRpcStubBuffer) -> ULONG>
§DebugServerQueryInterface: Option<unsafe extern "C" fn(This: *mut IRpcStubBuffer, ppv: *mut *mut c_void) -> HRESULT>
§DebugServerRelease: Option<unsafe extern "C" fn(This: *mut IRpcStubBuffer, pv: *mut c_void)>
Trait Implementations§
Source§impl Clone for IRpcStubBufferVtbl
impl Clone for IRpcStubBufferVtbl
Source§fn clone(&self) -> IRpcStubBufferVtbl
fn clone(&self) -> IRpcStubBufferVtbl
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 IRpcStubBufferVtbl
impl Debug for IRpcStubBufferVtbl
Source§impl Ord for IRpcStubBufferVtbl
impl Ord for IRpcStubBufferVtbl
Source§fn cmp(&self, other: &IRpcStubBufferVtbl) -> Ordering
fn cmp(&self, other: &IRpcStubBufferVtbl) -> 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 IRpcStubBufferVtbl
impl PartialEq for IRpcStubBufferVtbl
Source§impl PartialOrd for IRpcStubBufferVtbl
impl PartialOrd for IRpcStubBufferVtbl
impl Copy for IRpcStubBufferVtbl
impl Eq for IRpcStubBufferVtbl
impl StructuralPartialEq for IRpcStubBufferVtbl
Auto Trait Implementations§
impl Freeze for IRpcStubBufferVtbl
impl RefUnwindSafe for IRpcStubBufferVtbl
impl Send for IRpcStubBufferVtbl
impl Sync for IRpcStubBufferVtbl
impl Unpin for IRpcStubBufferVtbl
impl UnwindSafe for IRpcStubBufferVtbl
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