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