Struct INamedPropertyStore_Vtbl
#[repr(C)]pub struct INamedPropertyStore_Vtbl {
pub base__: IUnknown_Vtbl,
pub GetNamedValue: unsafe extern "system" fn(_: *mut c_void, _: PCWSTR, _: *mut PROPVARIANT) -> HRESULT,
pub SetNamedValue: unsafe extern "system" fn(_: *mut c_void, _: PCWSTR, _: *const PROPVARIANT) -> HRESULT,
pub GetNameCount: unsafe extern "system" fn(_: *mut c_void, _: *mut u32) -> HRESULT,
pub GetNameAt: unsafe extern "system" fn(_: *mut c_void, _: u32, _: *mut *mut c_void) -> HRESULT,
}
Fields§
§base__: IUnknown_Vtbl
§GetNamedValue: unsafe extern "system" fn(_: *mut c_void, _: PCWSTR, _: *mut PROPVARIANT) -> HRESULT
§SetNamedValue: unsafe extern "system" fn(_: *mut c_void, _: PCWSTR, _: *const PROPVARIANT) -> HRESULT
§GetNameCount: unsafe extern "system" fn(_: *mut c_void, _: *mut u32) -> HRESULT
§GetNameAt: unsafe extern "system" fn(_: *mut c_void, _: u32, _: *mut *mut c_void) -> HRESULT
Implementations§
§impl INamedPropertyStore_Vtbl
impl INamedPropertyStore_Vtbl
pub const fn new<Identity: INamedPropertyStore_Impl, const OFFSET: isize>() -> Self
pub fn matches(iid: &GUID) -> bool
Auto Trait Implementations§
impl Freeze for INamedPropertyStore_Vtbl
impl RefUnwindSafe for INamedPropertyStore_Vtbl
impl Send for INamedPropertyStore_Vtbl
impl Sync for INamedPropertyStore_Vtbl
impl Unpin for INamedPropertyStore_Vtbl
impl UnwindSafe for INamedPropertyStore_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