windows::Win32::UI::Shell

Trait IEnumExplorerCommand_Impl

pub trait IEnumExplorerCommand_Impl: IUnknownImpl {
    // Required methods
    fn Next(
        &self,
        celt: u32,
        puicommand: OutRef<'_, IExplorerCommand>,
        pceltfetched: *mut u32,
    ) -> HRESULT;
    fn Skip(&self, celt: u32) -> Result<()>;
    fn Reset(&self) -> Result<()>;
    fn Clone(&self) -> Result<IEnumExplorerCommand>;
}

Required Methods§

fn Next( &self, celt: u32, puicommand: OutRef<'_, IExplorerCommand>, pceltfetched: *mut u32, ) -> HRESULT

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

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

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

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§