windows::Win32::System::WindowsSync

Trait ISyncChangeBatchWithFilterKeyMap_Impl

pub trait ISyncChangeBatchWithFilterKeyMap_Impl: IUnknownImpl {
    // Required methods
    fn GetFilterKeyMap(&self) -> Result<IFilterKeyMap>;
    fn SetFilterKeyMap(
        &self,
        pifilterkeymap: Ref<'_, IFilterKeyMap>,
    ) -> Result<()>;
    fn SetFilterForgottenKnowledge(
        &self,
        dwfilterkey: u32,
        pfilterforgottenknowledge: Ref<'_, ISyncKnowledge>,
    ) -> Result<()>;
    fn GetFilteredReplicaLearnedKnowledge(
        &self,
        pdestinationknowledge: Ref<'_, ISyncKnowledge>,
        pnewmoveins: Ref<'_, IEnumItemIds>,
    ) -> Result<ISyncKnowledge>;
    fn GetLearnedFilterForgottenKnowledge(
        &self,
        pdestinationknowledge: Ref<'_, ISyncKnowledge>,
        pnewmoveins: Ref<'_, IEnumItemIds>,
        dwfilterkey: u32,
    ) -> Result<ISyncKnowledge>;
    fn GetFilteredReplicaLearnedForgottenKnowledge(
        &self,
        pdestinationknowledge: Ref<'_, ISyncKnowledge>,
        pnewmoveins: Ref<'_, IEnumItemIds>,
    ) -> Result<ISyncKnowledge>;
    fn GetFilteredReplicaLearnedForgottenKnowledgeAfterRecoveryComplete(
        &self,
        pdestinationknowledge: Ref<'_, ISyncKnowledge>,
        pnewmoveins: Ref<'_, IEnumItemIds>,
    ) -> Result<ISyncKnowledge>;
    fn GetLearnedFilterForgottenKnowledgeAfterRecoveryComplete(
        &self,
        pdestinationknowledge: Ref<'_, ISyncKnowledge>,
        pnewmoveins: Ref<'_, IEnumItemIds>,
        dwfilterkey: u32,
    ) -> Result<ISyncKnowledge>;
}

Required Methods§

fn GetFilterKeyMap(&self) -> Result<IFilterKeyMap>

fn SetFilterKeyMap(&self, pifilterkeymap: Ref<'_, IFilterKeyMap>) -> Result<()>

fn SetFilterForgottenKnowledge( &self, dwfilterkey: u32, pfilterforgottenknowledge: Ref<'_, ISyncKnowledge>, ) -> Result<()>

fn GetFilteredReplicaLearnedKnowledge( &self, pdestinationknowledge: Ref<'_, ISyncKnowledge>, pnewmoveins: Ref<'_, IEnumItemIds>, ) -> Result<ISyncKnowledge>

fn GetLearnedFilterForgottenKnowledge( &self, pdestinationknowledge: Ref<'_, ISyncKnowledge>, pnewmoveins: Ref<'_, IEnumItemIds>, dwfilterkey: u32, ) -> Result<ISyncKnowledge>

fn GetFilteredReplicaLearnedForgottenKnowledge( &self, pdestinationknowledge: Ref<'_, ISyncKnowledge>, pnewmoveins: Ref<'_, IEnumItemIds>, ) -> Result<ISyncKnowledge>

fn GetFilteredReplicaLearnedForgottenKnowledgeAfterRecoveryComplete( &self, pdestinationknowledge: Ref<'_, ISyncKnowledge>, pnewmoveins: Ref<'_, IEnumItemIds>, ) -> Result<ISyncKnowledge>

fn GetLearnedFilterForgottenKnowledgeAfterRecoveryComplete( &self, pdestinationknowledge: Ref<'_, ISyncKnowledge>, pnewmoveins: Ref<'_, IEnumItemIds>, dwfilterkey: u32, ) -> Result<ISyncKnowledge>

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.

Implementors§