Struct makepad_widgets::shader::std::windows::Win32::UI::Shell::PropertiesSystem::IPropertyStore
#[repr(transparent)]pub struct IPropertyStore(/* private fields */);Implementations§
§impl IPropertyStore
impl IPropertyStore
pub unsafe fn GetCount(&self) -> Result<u32, Error>
pub unsafe fn GetAt( &self, iprop: u32, pkey: *mut PROPERTYKEY ) -> Result<(), Error>
pub unsafe fn GetValue(
&self,
key: *const PROPERTYKEY
) -> Result<PROPVARIANT, Error>
pub unsafe fn GetValue( &self, key: *const PROPERTYKEY ) -> Result<PROPVARIANT, Error>
Required features: "Win32_Foundation", "Win32_System_Com_StructuredStorage", "Win32_System_Variant"
pub unsafe fn SetValue(
&self,
key: *const PROPERTYKEY,
propvar: *const PROPVARIANT
) -> Result<(), Error>
pub unsafe fn SetValue( &self, key: *const PROPERTYKEY, propvar: *const PROPVARIANT ) -> Result<(), Error>
Required features: "Win32_Foundation", "Win32_System_Com_StructuredStorage", "Win32_System_Variant"
pub unsafe fn Commit(&self) -> Result<(), Error>
Trait Implementations§
§impl Clone for IPropertyStore
impl Clone for IPropertyStore
§fn clone(&self) -> IPropertyStore
fn clone(&self) -> IPropertyStore
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read more§impl ComInterface for IPropertyStore
impl ComInterface for IPropertyStore
fn as_unknown(&self) -> &IUnknown
§impl Debug for IPropertyStore
impl Debug for IPropertyStore
§impl Interface for IPropertyStore
impl Interface for IPropertyStore
type Vtable = IPropertyStore_Vtbl
§fn as_raw(&self) -> *mut c_void
fn as_raw(&self) -> *mut c_void
Returns the raw COM interface pointer. The resulting pointer continues to be owned by the
Interface implementation.§fn into_raw(self) -> *mut c_void
fn into_raw(self) -> *mut c_void
Returns the raw COM interface pointer and releases ownership. It the caller’s responsibility to release the COM interface pointer.
§impl PartialEq<IPropertyStore> for IPropertyStore
impl PartialEq<IPropertyStore> for IPropertyStore
§fn eq(&self, other: &IPropertyStore) -> bool
fn eq(&self, other: &IPropertyStore) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Eq for IPropertyStore
Auto Trait Implementations§
impl RefUnwindSafe for IPropertyStore
impl !Send for IPropertyStore
impl !Sync for IPropertyStore
impl Unpin for IPropertyStore
impl UnwindSafe for IPropertyStore
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