Trait IEnumPins_Impl
pub trait IEnumPins_Impl: IUnknownImpl {
// Required methods
fn Next(
&self,
cpins: u32,
pppins: OutRef<'_, IPin>,
pcfetched: *mut u32,
) -> HRESULT;
fn Skip(&self, cpins: u32) -> Result<()>;
fn Reset(&self) -> Result<()>;
fn Clone(&self) -> Result<IEnumPins>;
}
Required Methods§
fn Next( &self, cpins: u32, pppins: OutRef<'_, IPin>, pcfetched: *mut u32, ) -> HRESULT
fn Skip(&self, cpins: u32) -> Result<()>
fn Reset(&self) -> Result<()>
fn Clone(&self) -> Result<IEnumPins>
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.