windows::Win32::UI::Shell

Trait IEnumObjects_Impl

pub trait IEnumObjects_Impl: IUnknownImpl {
    // Required methods
    fn Next(
        &self,
        celt: u32,
        riid: *const GUID,
        rgelt: *mut *mut c_void,
        pceltfetched: *mut u32,
    ) -> Result<()>;
    fn Skip(&self, celt: u32) -> Result<()>;
    fn Reset(&self) -> Result<()>;
    fn Clone(&self) -> Result<IEnumObjects>;
}

Required Methods§

fn Next( &self, celt: u32, riid: *const GUID, rgelt: *mut *mut c_void, pceltfetched: *mut u32, ) -> Result<()>

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

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

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

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§