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