[][src]Struct CCODE::IBindCtxVtbl

#[repr(C)]pub struct IBindCtxVtbl {
    pub QueryInterface: Option<unsafe extern "C" fn(This: *mut IBindCtx, riid: *const IID, ppvObject: *mut *mut c_void) -> HRESULT>,
    pub AddRef: Option<unsafe extern "C" fn(This: *mut IBindCtx) -> ULONG>,
    pub Release: Option<unsafe extern "C" fn(This: *mut IBindCtx) -> ULONG>,
    pub RegisterObjectBound: Option<unsafe extern "C" fn(This: *mut IBindCtx, punk: *mut IUnknown) -> HRESULT>,
    pub RevokeObjectBound: Option<unsafe extern "C" fn(This: *mut IBindCtx, punk: *mut IUnknown) -> HRESULT>,
    pub ReleaseBoundObjects: Option<unsafe extern "C" fn(This: *mut IBindCtx) -> HRESULT>,
    pub SetBindOptions: Option<unsafe extern "C" fn(This: *mut IBindCtx, pbindopts: *mut BIND_OPTS) -> HRESULT>,
    pub GetBindOptions: Option<unsafe extern "C" fn(This: *mut IBindCtx, pbindopts: *mut BIND_OPTS) -> HRESULT>,
    pub GetRunningObjectTable: Option<unsafe extern "C" fn(This: *mut IBindCtx, pprot: *mut *mut IRunningObjectTable) -> HRESULT>,
    pub RegisterObjectParam: Option<unsafe extern "C" fn(This: *mut IBindCtx, pszKey: LPOLESTR, punk: *mut IUnknown) -> HRESULT>,
    pub GetObjectParam: Option<unsafe extern "C" fn(This: *mut IBindCtx, pszKey: LPOLESTR, ppunk: *mut *mut IUnknown) -> HRESULT>,
    pub EnumObjectParam: Option<unsafe extern "C" fn(This: *mut IBindCtx, ppenum: *mut *mut IEnumString) -> HRESULT>,
    pub RevokeObjectParam: Option<unsafe extern "C" fn(This: *mut IBindCtx, pszKey: LPOLESTR) -> HRESULT>,
}

Fields

QueryInterface: Option<unsafe extern "C" fn(This: *mut IBindCtx, riid: *const IID, ppvObject: *mut *mut c_void) -> HRESULT>AddRef: Option<unsafe extern "C" fn(This: *mut IBindCtx) -> ULONG>Release: Option<unsafe extern "C" fn(This: *mut IBindCtx) -> ULONG>RegisterObjectBound: Option<unsafe extern "C" fn(This: *mut IBindCtx, punk: *mut IUnknown) -> HRESULT>RevokeObjectBound: Option<unsafe extern "C" fn(This: *mut IBindCtx, punk: *mut IUnknown) -> HRESULT>ReleaseBoundObjects: Option<unsafe extern "C" fn(This: *mut IBindCtx) -> HRESULT>SetBindOptions: Option<unsafe extern "C" fn(This: *mut IBindCtx, pbindopts: *mut BIND_OPTS) -> HRESULT>GetBindOptions: Option<unsafe extern "C" fn(This: *mut IBindCtx, pbindopts: *mut BIND_OPTS) -> HRESULT>GetRunningObjectTable: Option<unsafe extern "C" fn(This: *mut IBindCtx, pprot: *mut *mut IRunningObjectTable) -> HRESULT>RegisterObjectParam: Option<unsafe extern "C" fn(This: *mut IBindCtx, pszKey: LPOLESTR, punk: *mut IUnknown) -> HRESULT>GetObjectParam: Option<unsafe extern "C" fn(This: *mut IBindCtx, pszKey: LPOLESTR, ppunk: *mut *mut IUnknown) -> HRESULT>EnumObjectParam: Option<unsafe extern "C" fn(This: *mut IBindCtx, ppenum: *mut *mut IEnumString) -> HRESULT>RevokeObjectParam: Option<unsafe extern "C" fn(This: *mut IBindCtx, pszKey: LPOLESTR) -> HRESULT>

Trait Implementations

impl Clone for IBindCtxVtbl[src]

impl Copy for IBindCtxVtbl[src]

impl Debug for IBindCtxVtbl[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.