pub trait ISyncMgrSyncItem_Impl: Sized {
    // Required methods
    fn GetItemID(&self) -> Result<PWSTR>;
    fn GetName(&self) -> Result<PWSTR>;
    fn GetItemInfo(&self) -> Result<ISyncMgrSyncItemInfo>;
    fn GetObject(
        &self,
        rguidobjectid: *const GUID,
        riid: *const GUID,
        ppv: *mut *mut c_void
    ) -> Result<()>;
    fn GetCapabilities(&self) -> Result<SYNCMGR_ITEM_CAPABILITIES>;
    fn GetPolicies(&self) -> Result<SYNCMGR_ITEM_POLICIES>;
    fn Enable(&self, fenable: BOOL) -> Result<()>;
    fn Delete(&self) -> Result<()>;
}

Required Methods§

fn GetItemID(&self) -> Result<PWSTR>

fn GetName(&self) -> Result<PWSTR>

fn GetItemInfo(&self) -> Result<ISyncMgrSyncItemInfo>

fn GetObject( &self, rguidobjectid: *const GUID, riid: *const GUID, ppv: *mut *mut c_void ) -> Result<()>

fn GetCapabilities(&self) -> Result<SYNCMGR_ITEM_CAPABILITIES>

fn GetPolicies(&self) -> Result<SYNCMGR_ITEM_POLICIES>

fn Enable(&self, fenable: BOOL) -> Result<()>

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

Object Safety§

This trait is not object safe.

Implementors§