Trait IEnumWiaItem2_Impl
pub trait IEnumWiaItem2_Impl: IUnknownImpl {
// Required methods
fn Next(
&self,
celt: u32,
ppiwiaitem2: OutRef<'_, IWiaItem2>,
pceltfetched: *mut u32,
) -> Result<()>;
fn Skip(&self, celt: u32) -> Result<()>;
fn Reset(&self) -> Result<()>;
fn Clone(&self) -> Result<IEnumWiaItem2>;
fn GetCount(&self) -> Result<u32>;
}
Required Methods§
fn Next( &self, celt: u32, ppiwiaitem2: OutRef<'_, IWiaItem2>, pceltfetched: *mut u32, ) -> Result<()>
fn Skip(&self, celt: u32) -> Result<()>
fn Reset(&self) -> Result<()>
fn Clone(&self) -> Result<IEnumWiaItem2>
fn GetCount(&self) -> Result<u32>
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.