pub trait ISyncChangeBatchAdvanced_Impl: Sized {
    // Required methods
    fn GetFilterInfo(&self) -> Result<ISyncFilterInfo>;
    fn ConvertFullEnumerationChangeBatchToRegularChangeBatch(
        &self,
    ) -> Result<ISyncChangeBatch>;
    fn GetUpperBoundItemId(
        &self,
        pbitemid: *mut u8,
        pcbidsize: *mut u32,
    ) -> Result<()>;
    fn GetBatchLevelKnowledgeShouldBeApplied(
        &self,
        pfbatchknowledgeshouldbeapplied: *mut BOOL,
    ) -> Result<()>;
}

Required Methods§

fn GetFilterInfo(&self) -> Result<ISyncFilterInfo>

fn ConvertFullEnumerationChangeBatchToRegularChangeBatch( &self, ) -> Result<ISyncChangeBatch>

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

fn GetBatchLevelKnowledgeShouldBeApplied( &self, pfbatchknowledgeshouldbeapplied: *mut BOOL, ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§