pub trait ISyncChangeUnit_Impl: Sized {
    // Required methods
    fn GetItemChange(&self) -> Result<ISyncChange>;
    fn GetChangeUnitId(
        &self,
        pbchangeunitid: *mut u8,
        pcbidsize: *mut u32
    ) -> Result<()>;
    fn GetChangeUnitVersion(
        &self,
        pbcurrentreplicaid: *const u8,
        pversion: *mut SYNC_VERSION
    ) -> Result<()>;
}

Required Methods§

fn GetItemChange(&self) -> Result<ISyncChange>

fn GetChangeUnitId( &self, pbchangeunitid: *mut u8, pcbidsize: *mut u32 ) -> Result<()>

fn GetChangeUnitVersion( &self, pbcurrentreplicaid: *const u8, pversion: *mut SYNC_VERSION ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§