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