[][src]Struct CCODE::IErrorInfoVtbl

#[repr(C)]pub struct IErrorInfoVtbl {
    pub QueryInterface: Option<unsafe extern "C" fn(This: *mut IErrorInfo, riid: *const IID, ppvObject: *mut *mut c_void) -> HRESULT>,
    pub AddRef: Option<unsafe extern "C" fn(This: *mut IErrorInfo) -> ULONG>,
    pub Release: Option<unsafe extern "C" fn(This: *mut IErrorInfo) -> ULONG>,
    pub GetGUID: Option<unsafe extern "C" fn(This: *mut IErrorInfo, pGUID: *mut GUID) -> HRESULT>,
    pub GetSource: Option<unsafe extern "C" fn(This: *mut IErrorInfo, pBstrSource: *mut BSTR) -> HRESULT>,
    pub GetDescription: Option<unsafe extern "C" fn(This: *mut IErrorInfo, pBstrDescription: *mut BSTR) -> HRESULT>,
    pub GetHelpFile: Option<unsafe extern "C" fn(This: *mut IErrorInfo, pBstrHelpFile: *mut BSTR) -> HRESULT>,
    pub GetHelpContext: Option<unsafe extern "C" fn(This: *mut IErrorInfo, pdwHelpContext: *mut DWORD) -> HRESULT>,
}

Fields

QueryInterface: Option<unsafe extern "C" fn(This: *mut IErrorInfo, riid: *const IID, ppvObject: *mut *mut c_void) -> HRESULT>AddRef: Option<unsafe extern "C" fn(This: *mut IErrorInfo) -> ULONG>Release: Option<unsafe extern "C" fn(This: *mut IErrorInfo) -> ULONG>GetGUID: Option<unsafe extern "C" fn(This: *mut IErrorInfo, pGUID: *mut GUID) -> HRESULT>GetSource: Option<unsafe extern "C" fn(This: *mut IErrorInfo, pBstrSource: *mut BSTR) -> HRESULT>GetDescription: Option<unsafe extern "C" fn(This: *mut IErrorInfo, pBstrDescription: *mut BSTR) -> HRESULT>GetHelpFile: Option<unsafe extern "C" fn(This: *mut IErrorInfo, pBstrHelpFile: *mut BSTR) -> HRESULT>GetHelpContext: Option<unsafe extern "C" fn(This: *mut IErrorInfo, pdwHelpContext: *mut DWORD) -> HRESULT>

Trait Implementations

impl Clone for IErrorInfoVtbl[src]

impl Copy for IErrorInfoVtbl[src]

impl Debug for IErrorInfoVtbl[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.