Trait IEnumIDList_Impl
pub trait IEnumIDList_Impl: IUnknownImpl {
// Required methods
fn Next(
&self,
celt: u32,
rgelt: *mut *mut ITEMIDLIST,
pceltfetched: *mut u32,
) -> HRESULT;
fn Skip(&self, celt: u32) -> HRESULT;
fn Reset(&self) -> HRESULT;
fn Clone(&self, ppenum: OutRef<'_, IEnumIDList>) -> HRESULT;
}
Required Methods§
fn Next( &self, celt: u32, rgelt: *mut *mut ITEMIDLIST, pceltfetched: *mut u32, ) -> HRESULT
fn Skip(&self, celt: u32) -> HRESULT
fn Reset(&self) -> HRESULT
fn Clone(&self, ppenum: OutRef<'_, IEnumIDList>) -> HRESULT
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.