windows::Win32::UI::Shell::PropertiesSystem

Trait IPropertyChangeArray_Impl

pub trait IPropertyChangeArray_Impl: IUnknownImpl {
    // Required methods
    fn GetCount(&self) -> Result<u32>;
    fn GetAt(
        &self,
        iindex: u32,
        riid: *const GUID,
        ppv: *mut *mut c_void,
    ) -> Result<()>;
    fn InsertAt(
        &self,
        iindex: u32,
        ppropchange: Ref<'_, IPropertyChange>,
    ) -> Result<()>;
    fn Append(&self, ppropchange: Ref<'_, IPropertyChange>) -> Result<()>;
    fn AppendOrReplace(
        &self,
        ppropchange: Ref<'_, IPropertyChange>,
    ) -> Result<()>;
    fn RemoveAt(&self, iindex: u32) -> Result<()>;
    fn IsKeyInArray(&self, key: *const PROPERTYKEY) -> Result<()>;
}

Required Methods§

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

fn GetAt( &self, iindex: u32, riid: *const GUID, ppv: *mut *mut c_void, ) -> Result<()>

fn InsertAt( &self, iindex: u32, ppropchange: Ref<'_, IPropertyChange>, ) -> Result<()>

fn Append(&self, ppropchange: Ref<'_, IPropertyChange>) -> Result<()>

fn AppendOrReplace(&self, ppropchange: Ref<'_, IPropertyChange>) -> Result<()>

fn RemoveAt(&self, iindex: u32) -> Result<()>

fn IsKeyInArray(&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.

Implementors§