pub trait IPortableDeviceValuesCollection_Impl: Sized {
    // Required methods
    fn GetCount(&self, pcelems: *const u32) -> Result<()>;
    fn GetAt(&self, dwindex: u32) -> Result<IPortableDeviceValues>;
    fn Add(&self, pvalues: Option<&IPortableDeviceValues>) -> Result<()>;
    fn Clear(&self) -> Result<()>;
    fn RemoveAt(&self, dwindex: u32) -> Result<()>;
}

Required Methods§

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

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

fn Add(&self, pvalues: Option<&IPortableDeviceValues>) -> Result<()>

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

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

Object Safety§

This trait is not object safe.

Implementors§