windows::Win32::System::SideShow

Trait ISideShowPropVariantCollection_Impl

pub trait ISideShowPropVariantCollection_Impl: IUnknownImpl {
    // Required methods
    fn Add(&self, pvalue: *const PROPVARIANT) -> Result<()>;
    fn Clear(&self) -> Result<()>;
    fn GetAt(&self, dwindex: u32, pvalue: *mut PROPVARIANT) -> Result<()>;
    fn GetCount(&self, pcelems: *const u32) -> Result<()>;
    fn RemoveAt(&self, dwindex: u32) -> Result<()>;
}

Required Methods§

fn Add(&self, pvalue: *const PROPVARIANT) -> Result<()>

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

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

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

fn RemoveAt(&self, dwindex: u32) -> 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§