#[repr(C)]pub struct IBindingVtbl {
pub QueryInterface: Option<unsafe extern "stdcall" fn(This: *mut IBinding, riid: *const IID, ppvObject: *mut *mut c_void) -> HRESULT>,
pub AddRef: Option<unsafe extern "stdcall" fn(This: *mut IBinding) -> ULONG>,
pub Release: Option<unsafe extern "stdcall" fn(This: *mut IBinding) -> ULONG>,
pub Abort: Option<unsafe extern "stdcall" fn(This: *mut IBinding) -> HRESULT>,
pub Suspend: Option<unsafe extern "stdcall" fn(This: *mut IBinding) -> HRESULT>,
pub Resume: Option<unsafe extern "stdcall" fn(This: *mut IBinding) -> HRESULT>,
pub SetPriority: Option<unsafe extern "stdcall" fn(This: *mut IBinding, nPriority: LONG) -> HRESULT>,
pub GetPriority: Option<unsafe extern "stdcall" fn(This: *mut IBinding, pnPriority: *mut LONG) -> HRESULT>,
pub GetBindResult: Option<unsafe extern "stdcall" fn(This: *mut IBinding, pclsidProtocol: *mut CLSID, pdwResult: *mut DWORD, pszResult: *mut LPOLESTR, pdwReserved: *mut DWORD) -> HRESULT>,
}Fields§
§QueryInterface: Option<unsafe extern "stdcall" fn(This: *mut IBinding, riid: *const IID, ppvObject: *mut *mut c_void) -> HRESULT>§AddRef: Option<unsafe extern "stdcall" fn(This: *mut IBinding) -> ULONG>§Release: Option<unsafe extern "stdcall" fn(This: *mut IBinding) -> ULONG>§Abort: Option<unsafe extern "stdcall" fn(This: *mut IBinding) -> HRESULT>§Suspend: Option<unsafe extern "stdcall" fn(This: *mut IBinding) -> HRESULT>§Resume: Option<unsafe extern "stdcall" fn(This: *mut IBinding) -> HRESULT>§SetPriority: Option<unsafe extern "stdcall" fn(This: *mut IBinding, nPriority: LONG) -> HRESULT>§GetPriority: Option<unsafe extern "stdcall" fn(This: *mut IBinding, pnPriority: *mut LONG) -> HRESULT>§GetBindResult: Option<unsafe extern "stdcall" 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 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 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