windows::Win32::System::Com::StructuredStorage

Trait IEnumSTATPROPSTG_Impl

pub trait IEnumSTATPROPSTG_Impl: IUnknownImpl {
    // Required methods
    fn Next(
        &self,
        celt: u32,
        rgelt: *mut STATPROPSTG,
        pceltfetched: *mut u32,
    ) -> HRESULT;
    fn Skip(&self, celt: u32) -> HRESULT;
    fn Reset(&self) -> Result<()>;
    fn Clone(&self) -> Result<IEnumSTATPROPSTG>;
}

Required Methods§

fn Next( &self, celt: u32, rgelt: *mut STATPROPSTG, pceltfetched: *mut u32, ) -> HRESULT

fn Skip(&self, celt: u32) -> HRESULT

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

fn Clone(&self) -> Result<IEnumSTATPROPSTG>

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§