[][src]Struct winapi::um::propsys::IPropertyStoreVtbl

#[repr(C)]
pub struct IPropertyStoreVtbl {
    pub parent: IUnknownVtbl,
    pub GetCount: unsafe extern "system" fn(This: *mut IPropertyStore, cProps: *mut DWORD) -> HRESULT,
    pub GetAt: unsafe extern "system" fn(This: *mut IPropertyStore, iProp: DWORD, pkey: *mut PROPERTYKEY) -> HRESULT,
    pub GetValue: unsafe extern "system" fn(This: *mut IPropertyStore, key: REFPROPERTYKEY, pv: *mut PROPVARIANT) -> HRESULT,
    pub SetValue: unsafe extern "system" fn(This: *mut IPropertyStore, key: REFPROPERTYKEY, propvar: REFPROPVARIANT) -> HRESULT,
    pub Commit: unsafe extern "system" fn(This: *mut IPropertyStore) -> HRESULT,
}

Fields

parent: IUnknownVtblGetCount: unsafe extern "system" fn(This: *mut IPropertyStore, cProps: *mut DWORD) -> HRESULTGetAt: unsafe extern "system" fn(This: *mut IPropertyStore, iProp: DWORD, pkey: *mut PROPERTYKEY) -> HRESULTGetValue: unsafe extern "system" fn(This: *mut IPropertyStore, key: REFPROPERTYKEY, pv: *mut PROPVARIANT) -> HRESULTSetValue: unsafe extern "system" fn(This: *mut IPropertyStore, key: REFPROPERTYKEY, propvar: REFPROPVARIANT) -> HRESULTCommit: unsafe extern "system" fn(This: *mut IPropertyStore) -> HRESULT

Auto Trait Implementations

Blanket Implementations

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> Into<U> for T where
    U: From<T>, 
[src]

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

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.

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

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

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