pub trait ISyncMgrEventStore_Impl: Sized {
    // Required methods
    fn GetEventEnumerator(&self) -> Result<IEnumSyncMgrEvents>;
    fn GetEventCount(&self) -> Result<u32>;
    fn GetEvent(&self, rguideventid: *const GUID) -> Result<ISyncMgrEvent>;
    fn RemoveEvent(
        &self,
        pguideventids: *const GUID,
        cevents: u32
    ) -> Result<()>;
}

Required Methods§

fn GetEventEnumerator(&self) -> Result<IEnumSyncMgrEvents>

fn GetEventCount(&self) -> Result<u32>

fn GetEvent(&self, rguideventid: *const GUID) -> Result<ISyncMgrEvent>

fn RemoveEvent(&self, pguideventids: *const GUID, cevents: u32) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§