pub trait ISyncMgrSyncItemContainer_Impl: Sized {
    // Required methods
    fn GetSyncItem(&self, pszitemid: &PCWSTR) -> Result<ISyncMgrSyncItem>;
    fn GetSyncItemEnumerator(&self) -> Result<IEnumSyncMgrSyncItems>;
    fn GetSyncItemCount(&self) -> Result<u32>;
}

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§