pub trait ISyncMgrSynchronizeInvoke_Impl: Sized {
    // Required methods
    fn UpdateItems(
        &self,
        dwinvokeflags: u32,
        clsid: *const GUID,
        cbcookie: u32,
        pcookie: *const u8
    ) -> Result<()>;
    fn UpdateAll(&self) -> Result<()>;
}

Required Methods§

fn UpdateItems( &self, dwinvokeflags: u32, clsid: *const GUID, cbcookie: u32, pcookie: *const u8 ) -> Result<()>

fn UpdateAll(&self) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§