Struct IPropertyKeyStore_Vtbl
#[repr(C)]pub struct IPropertyKeyStore_Vtbl {
    pub base__: IUnknown_Vtbl,
    pub GetKeyCount: unsafe extern "system" fn(_: *mut c_void, _: *mut i32) -> HRESULT,
    pub GetKeyAt: unsafe extern "system" fn(_: *mut c_void, _: i32, _: *mut PROPERTYKEY) -> HRESULT,
    pub AppendKey: unsafe extern "system" fn(_: *mut c_void, _: *const PROPERTYKEY) -> HRESULT,
    pub DeleteKey: unsafe extern "system" fn(_: *mut c_void, _: i32) -> HRESULT,
    pub IsKeyInStore: unsafe extern "system" fn(_: *mut c_void, _: *const PROPERTYKEY) -> HRESULT,
    pub RemoveKey: unsafe extern "system" fn(_: *mut c_void, _: *const PROPERTYKEY) -> HRESULT,
}Fields§
§base__: IUnknown_Vtbl§GetKeyCount: unsafe extern "system" fn(_: *mut c_void, _: *mut i32) -> HRESULT§GetKeyAt: unsafe extern "system" fn(_: *mut c_void, _: i32, _: *mut PROPERTYKEY) -> HRESULT§AppendKey: unsafe extern "system" fn(_: *mut c_void, _: *const PROPERTYKEY) -> HRESULT§DeleteKey: unsafe extern "system" fn(_: *mut c_void, _: i32) -> HRESULT§IsKeyInStore: unsafe extern "system" fn(_: *mut c_void, _: *const PROPERTYKEY) -> HRESULT§RemoveKey: unsafe extern "system" fn(_: *mut c_void, _: *const PROPERTYKEY) -> HRESULTImplementations§
§impl IPropertyKeyStore_Vtbl
 
impl IPropertyKeyStore_Vtbl
pub const fn new<Identity: IPropertyKeyStore_Impl, const OFFSET: isize>() -> Self
pub fn matches(iid: &GUID) -> bool
Auto Trait Implementations§
impl Freeze for IPropertyKeyStore_Vtbl
impl RefUnwindSafe for IPropertyKeyStore_Vtbl
impl Send for IPropertyKeyStore_Vtbl
impl Sync for IPropertyKeyStore_Vtbl
impl Unpin for IPropertyKeyStore_Vtbl
impl UnwindSafe for IPropertyKeyStore_Vtbl
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