pub trait IObjectWithPropertyKey_Impl: Sized {
    // Required methods
    fn SetPropertyKey(&self, key: *const PROPERTYKEY) -> Result<()>;
    fn GetPropertyKey(&self, pkey: *mut PROPERTYKEY) -> Result<()>;
}

Required Methods§

fn SetPropertyKey(&self, key: *const PROPERTYKEY) -> Result<()>

fn GetPropertyKey(&self, pkey: *mut PROPERTYKEY) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§