Trait IPropertyKeyStore_Impl
pub trait IPropertyKeyStore_Impl: IUnknownImpl {
    // Required methods
    fn GetKeyCount(&self) -> Result<i32>;
    fn GetKeyAt(&self, index: i32, pkey: *mut PROPERTYKEY) -> Result<()>;
    fn AppendKey(&self, key: *const PROPERTYKEY) -> Result<()>;
    fn DeleteKey(&self, index: i32) -> Result<()>;
    fn IsKeyInStore(&self, key: *const PROPERTYKEY) -> Result<()>;
    fn RemoveKey(&self, key: *const PROPERTYKEY) -> Result<()>;
}Required Methods§
fn GetKeyCount(&self) -> Result<i32>
fn GetKeyAt(&self, index: i32, pkey: *mut PROPERTYKEY) -> Result<()>
fn AppendKey(&self, key: *const PROPERTYKEY) -> Result<()>
fn DeleteKey(&self, index: i32) -> Result<()>
fn IsKeyInStore(&self, key: *const PROPERTYKEY) -> Result<()>
fn RemoveKey(&self, key: *const PROPERTYKEY) -> Result<()>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.