pub trait ISyncMgrSyncResult_Impl: Sized {
    // Required method
    fn Result(
        &self,
        nstatus: SYNCMGR_PROGRESS_STATUS,
        cerror: u32,
        cconflicts: u32
    ) -> Result<()>;
}

Required Methods§

fn Result( &self, nstatus: SYNCMGR_PROGRESS_STATUS, cerror: u32, cconflicts: u32 ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§