Trait IFileSyncMergeHandler_Impl
pub trait IFileSyncMergeHandler_Impl: IUnknownImpl {
// Required methods
fn Merge(
&self,
localfilepath: &PCWSTR,
serverfilepath: &PCWSTR,
) -> Result<MERGE_UPDATE_STATUS>;
fn ShowResolveConflictUIAsync(
&self,
localfilepath: &PCWSTR,
monitortodisplayon: HMONITOR,
) -> Result<()>;
}
Required Methods§
fn Merge( &self, localfilepath: &PCWSTR, serverfilepath: &PCWSTR, ) -> Result<MERGE_UPDATE_STATUS>
fn ShowResolveConflictUIAsync( &self, localfilepath: &PCWSTR, monitortodisplayon: HMONITOR, ) -> Result<()>
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.