Trait windows::Win32::UI::Shell::IEnumExplorerCommand_Impl
pub trait IEnumExplorerCommand_Impl: Sized {
// Required methods
fn Next(
&self,
celt: u32,
puicommand: *mut Option<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: *mut Option<IExplorerCommand>, pceltfetched: *mut u32, ) -> HRESULT
fn Skip(&self, celt: u32) -> Result<()>
fn Reset(&self) -> Result<()>
fn Clone(&self) -> Result<IEnumExplorerCommand>
Object Safety§
This trait is not object safe.