[][src]Struct winapi::um::ocidl::IPropertyBag2Vtbl

#[repr(C)]pub struct IPropertyBag2Vtbl {
    pub parent: IUnknownVtbl,
    pub Read: unsafe extern "system" fn(This: *mut IPropertyBag2, cProperties: ULONG, pPropBag: *const PROPBAG2, pErrLog: *const IErrorLog, pvarValue: *mut VARIANT, phrError: *mut HRESULT) -> HRESULT,
    pub Write: unsafe extern "system" fn(This: *mut IPropertyBag2, cProperties: ULONG, pPropBag: *const PROPBAG2, pvarValue: *const VARIANT) -> HRESULT,
    pub CountProperties: unsafe extern "system" fn(This: *mut IPropertyBag2, pcProperties: *mut ULONG) -> HRESULT,
    pub GetPropertyInfo: unsafe extern "system" fn(This: *mut IPropertyBag2, iProperty: ULONG, cProperties: ULONG, pPropBag: *mut PROPBAG2, pcProperties: *mut ULONG) -> HRESULT,
    pub LoadObject: unsafe extern "system" fn(This: *mut IPropertyBag2, pstrName: LPCOLESTR, dwHint: DWORD, pUnkObject: *const IUnknown, pErrLog: *const IErrorLog) -> HRESULT,
}

Fields

parent: IUnknownVtblRead: unsafe extern "system" fn(This: *mut IPropertyBag2, cProperties: ULONG, pPropBag: *const PROPBAG2, pErrLog: *const IErrorLog, pvarValue: *mut VARIANT, phrError: *mut HRESULT) -> HRESULTWrite: unsafe extern "system" fn(This: *mut IPropertyBag2, cProperties: ULONG, pPropBag: *const PROPBAG2, pvarValue: *const VARIANT) -> HRESULTCountProperties: unsafe extern "system" fn(This: *mut IPropertyBag2, pcProperties: *mut ULONG) -> HRESULTGetPropertyInfo: unsafe extern "system" fn(This: *mut IPropertyBag2, iProperty: ULONG, cProperties: ULONG, pPropBag: *mut PROPBAG2, pcProperties: *mut ULONG) -> HRESULTLoadObject: unsafe extern "system" fn(This: *mut IPropertyBag2, pstrName: LPCOLESTR, dwHint: DWORD, pUnkObject: *const IUnknown, pErrLog: *const IErrorLog) -> HRESULT

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, 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.