pub trait ILoadChangeContext_Impl: Sized {
    // Required methods
    fn GetSyncChange(&self) -> Result<ISyncChange>;
    fn SetRecoverableErrorOnChange(
        &self,
        hrerror: HRESULT,
        perrordata: Option<&IRecoverableErrorData>
    ) -> Result<()>;
    fn SetRecoverableErrorOnChangeUnit(
        &self,
        hrerror: HRESULT,
        pchangeunit: Option<&ISyncChangeUnit>,
        perrordata: Option<&IRecoverableErrorData>
    ) -> Result<()>;
}

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§