#[repr(C)]pub struct IBindingVtbl {
pub QueryInterface: Option<unsafe extern "C" fn(This: *mut IBinding, riid: *const IID, ppvObject: *mut *mut c_void) -> HRESULT>,
pub AddRef: Option<unsafe extern "C" fn(This: *mut IBinding) -> ULONG>,
pub Release: Option<unsafe extern "C" fn(This: *mut IBinding) -> ULONG>,
pub Abort: Option<unsafe extern "C" fn(This: *mut IBinding) -> HRESULT>,
pub Suspend: Option<unsafe extern "C" fn(This: *mut IBinding) -> HRESULT>,
pub Resume: Option<unsafe extern "C" fn(This: *mut IBinding) -> HRESULT>,
pub SetPriority: Option<unsafe extern "C" fn(This: *mut IBinding, nPriority: LONG) -> HRESULT>,
pub GetPriority: Option<unsafe extern "C" fn(This: *mut IBinding, pnPriority: *mut LONG) -> HRESULT>,
pub GetBindResult: Option<unsafe extern "C" fn(This: *mut IBinding, pclsidProtocol: *mut CLSID, pdwResult: *mut DWORD, pszResult: *mut LPOLESTR, pdwReserved: *mut DWORD) -> HRESULT>,
}
Fields§
§QueryInterface: Option<unsafe extern "C" fn(This: *mut IBinding, riid: *const IID, ppvObject: *mut *mut c_void) -> HRESULT>
§AddRef: Option<unsafe extern "C" fn(This: *mut IBinding) -> ULONG>
§Release: Option<unsafe extern "C" fn(This: *mut IBinding) -> ULONG>
§Abort: Option<unsafe extern "C" fn(This: *mut IBinding) -> HRESULT>
§Suspend: Option<unsafe extern "C" fn(This: *mut IBinding) -> HRESULT>
§Resume: Option<unsafe extern "C" fn(This: *mut IBinding) -> HRESULT>
§SetPriority: Option<unsafe extern "C" fn(This: *mut IBinding, nPriority: LONG) -> HRESULT>
§GetPriority: Option<unsafe extern "C" fn(This: *mut IBinding, pnPriority: *mut LONG) -> HRESULT>
§GetBindResult: Option<unsafe extern "C" fn(This: *mut IBinding, pclsidProtocol: *mut CLSID, pdwResult: *mut DWORD, pszResult: *mut LPOLESTR, pdwReserved: *mut DWORD) -> HRESULT>
Trait Implementations§
Source§impl Clone for IBindingVtbl
impl Clone for IBindingVtbl
Source§fn clone(&self) -> IBindingVtbl
fn clone(&self) -> IBindingVtbl
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 IBindingVtbl
impl Debug for IBindingVtbl
Source§impl Ord for IBindingVtbl
impl Ord for IBindingVtbl
Source§fn cmp(&self, other: &IBindingVtbl) -> Ordering
fn cmp(&self, other: &IBindingVtbl) -> 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 IBindingVtbl
impl PartialEq for IBindingVtbl
Source§impl PartialOrd for IBindingVtbl
impl PartialOrd for IBindingVtbl
impl Copy for IBindingVtbl
impl Eq for IBindingVtbl
impl StructuralPartialEq for IBindingVtbl
Auto Trait Implementations§
impl Freeze for IBindingVtbl
impl RefUnwindSafe for IBindingVtbl
impl Send for IBindingVtbl
impl Sync for IBindingVtbl
impl Unpin for IBindingVtbl
impl UnwindSafe for IBindingVtbl
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