#[repr(C)]pub struct IWrappedProtocolVtbl {
pub QueryInterface: Option<unsafe extern "stdcall" fn(This: *mut IWrappedProtocol, riid: *const IID, ppvObject: *mut *mut c_void) -> HRESULT>,
pub AddRef: Option<unsafe extern "stdcall" fn(This: *mut IWrappedProtocol) -> ULONG>,
pub Release: Option<unsafe extern "stdcall" fn(This: *mut IWrappedProtocol) -> ULONG>,
pub GetWrapperCode: Option<unsafe extern "stdcall" fn(This: *mut IWrappedProtocol, pnCode: *mut LONG, dwReserved: DWORD_PTR) -> HRESULT>,
}Fields§
§QueryInterface: Option<unsafe extern "stdcall" fn(This: *mut IWrappedProtocol, riid: *const IID, ppvObject: *mut *mut c_void) -> HRESULT>§AddRef: Option<unsafe extern "stdcall" fn(This: *mut IWrappedProtocol) -> ULONG>§Release: Option<unsafe extern "stdcall" fn(This: *mut IWrappedProtocol) -> ULONG>§GetWrapperCode: Option<unsafe extern "stdcall" fn(This: *mut IWrappedProtocol, pnCode: *mut LONG, dwReserved: DWORD_PTR) -> HRESULT>Trait Implementations§
Source§impl Clone for IWrappedProtocolVtbl
impl Clone for IWrappedProtocolVtbl
Source§fn clone(&self) -> IWrappedProtocolVtbl
fn clone(&self) -> IWrappedProtocolVtbl
Returns a duplicate 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 moreimpl Copy for IWrappedProtocolVtbl
Auto Trait Implementations§
impl Freeze for IWrappedProtocolVtbl
impl RefUnwindSafe for IWrappedProtocolVtbl
impl Send for IWrappedProtocolVtbl
impl Sync for IWrappedProtocolVtbl
impl Unpin for IWrappedProtocolVtbl
impl UnwindSafe for IWrappedProtocolVtbl
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