pub trait IPropertyStoreCollection_Impl: Sized {
    // Required methods
    fn GetCount(&self) -> Result<u32>;
    fn Get(
        &self,
        pszinstanceidentity: &PCWSTR,
        pdwindex: *mut u32
    ) -> Result<IPropertyStore>;
    fn Item(&self, dwindex: u32) -> Result<IPropertyStore>;
    fn Add(&self, pipropertystore: Option<&IPropertyStore>) -> Result<()>;
    fn Remove(&self, dwindex: u32) -> Result<IPropertyStore>;
    fn Delete(&self, dwindex: u32) -> Result<()>;
    fn DeleteAll(&self) -> Result<()>;
}

Required Methods§

fn GetCount(&self) -> Result<u32>

fn Get( &self, pszinstanceidentity: &PCWSTR, pdwindex: *mut u32 ) -> Result<IPropertyStore>

fn Item(&self, dwindex: u32) -> Result<IPropertyStore>

fn Add(&self, pipropertystore: Option<&IPropertyStore>) -> Result<()>

fn Remove(&self, dwindex: u32) -> Result<IPropertyStore>

fn Delete(&self, dwindex: u32) -> Result<()>

fn DeleteAll(&self) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§