Trait ISyncMgrEventStore_Impl
pub trait ISyncMgrEventStore_Impl: IUnknownImpl {
// 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<()>
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.