Trait IEnumSyncProviderInfos_Impl
pub trait IEnumSyncProviderInfos_Impl: IUnknownImpl {
// Required methods
fn Next(
&self,
cinstances: u32,
ppsyncproviderinfo: OutRef<'_, ISyncProviderInfo>,
pcfetched: *mut u32,
) -> Result<()>;
fn Skip(&self, cinstances: u32) -> Result<()>;
fn Reset(&self) -> Result<()>;
fn Clone(&self) -> Result<IEnumSyncProviderInfos>;
}
Required Methods§
fn Next( &self, cinstances: u32, ppsyncproviderinfo: OutRef<'_, ISyncProviderInfo>, pcfetched: *mut u32, ) -> Result<()>
fn Skip(&self, cinstances: u32) -> Result<()>
fn Reset(&self) -> Result<()>
fn Clone(&self) -> Result<IEnumSyncProviderInfos>
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.