pub trait ISideShowKeyCollection_Impl: Sized {
    // Required methods
    fn Add(&self, key: *const PROPERTYKEY) -> Result<()>;
    fn Clear(&self) -> Result<()>;
    fn GetAt(&self, dwindex: u32, pkey: *mut PROPERTYKEY) -> Result<()>;
    fn GetCount(&self, pcelems: *const u32) -> Result<()>;
    fn RemoveAt(&self, dwindex: u32) -> Result<()>;
}

Required Methods§

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

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

fn GetAt(&self, dwindex: u32, pkey: *mut PROPERTYKEY) -> Result<()>

fn GetCount(&self, pcelems: *const u32) -> Result<()>

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

Object Safety§

This trait is not object safe.

Implementors§