#[repr(C)]pub struct IBindHostVtbl {
pub QueryInterface: Option<unsafe extern "C" fn(This: *mut IBindHost, riid: *const IID, ppvObject: *mut *mut c_void) -> HRESULT>,
pub AddRef: Option<unsafe extern "C" fn(This: *mut IBindHost) -> ULONG>,
pub Release: Option<unsafe extern "C" fn(This: *mut IBindHost) -> ULONG>,
pub CreateMoniker: Option<unsafe extern "C" fn(This: *mut IBindHost, szName: LPOLESTR, pBC: *mut IBindCtx, ppmk: *mut *mut IMoniker, dwReserved: DWORD) -> HRESULT>,
pub MonikerBindToStorage: Option<unsafe extern "C" fn(This: *mut IBindHost, pMk: *mut IMoniker, pBC: *mut IBindCtx, pBSC: *mut IBindStatusCallback, riid: *const IID, ppvObj: *mut *mut c_void) -> HRESULT>,
pub MonikerBindToObject: Option<unsafe extern "C" fn(This: *mut IBindHost, pMk: *mut IMoniker, pBC: *mut IBindCtx, pBSC: *mut IBindStatusCallback, riid: *const IID, ppvObj: *mut *mut c_void) -> HRESULT>,
}
Fields§
§QueryInterface: Option<unsafe extern "C" fn(This: *mut IBindHost, riid: *const IID, ppvObject: *mut *mut c_void) -> HRESULT>
§AddRef: Option<unsafe extern "C" fn(This: *mut IBindHost) -> ULONG>
§Release: Option<unsafe extern "C" fn(This: *mut IBindHost) -> ULONG>
§CreateMoniker: Option<unsafe extern "C" fn(This: *mut IBindHost, szName: LPOLESTR, pBC: *mut IBindCtx, ppmk: *mut *mut IMoniker, dwReserved: DWORD) -> HRESULT>
§MonikerBindToStorage: Option<unsafe extern "C" fn(This: *mut IBindHost, pMk: *mut IMoniker, pBC: *mut IBindCtx, pBSC: *mut IBindStatusCallback, riid: *const IID, ppvObj: *mut *mut c_void) -> HRESULT>
§MonikerBindToObject: Option<unsafe extern "C" fn(This: *mut IBindHost, pMk: *mut IMoniker, pBC: *mut IBindCtx, pBSC: *mut IBindStatusCallback, riid: *const IID, ppvObj: *mut *mut c_void) -> HRESULT>
Trait Implementations§
Source§impl Clone for IBindHostVtbl
impl Clone for IBindHostVtbl
Source§fn clone(&self) -> IBindHostVtbl
fn clone(&self) -> IBindHostVtbl
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 IBindHostVtbl
impl Debug for IBindHostVtbl
Source§impl Ord for IBindHostVtbl
impl Ord for IBindHostVtbl
Source§fn cmp(&self, other: &IBindHostVtbl) -> Ordering
fn cmp(&self, other: &IBindHostVtbl) -> 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 IBindHostVtbl
impl PartialEq for IBindHostVtbl
Source§impl PartialOrd for IBindHostVtbl
impl PartialOrd for IBindHostVtbl
impl Copy for IBindHostVtbl
impl Eq for IBindHostVtbl
impl StructuralPartialEq for IBindHostVtbl
Auto Trait Implementations§
impl Freeze for IBindHostVtbl
impl RefUnwindSafe for IBindHostVtbl
impl Send for IBindHostVtbl
impl Sync for IBindHostVtbl
impl Unpin for IBindHostVtbl
impl UnwindSafe for IBindHostVtbl
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