pub trait ISyncMgrHandler_Impl: IUnknownImpl {
// Required methods
fn GetName(&self) -> Result<PWSTR, Error>;
fn GetHandlerInfo(&self) -> Result<ISyncMgrHandlerInfo, Error>;
fn GetObject(
&self,
rguidobjectid: *const GUID,
riid: *const GUID,
ppv: *mut *mut c_void,
) -> Result<(), Error>;
fn GetCapabilities(&self) -> Result<SYNCMGR_HANDLER_CAPABILITIES, Error>;
fn GetPolicies(&self) -> Result<SYNCMGR_HANDLER_POLICIES, Error>;
fn Activate(&self, factivate: BOOL) -> Result<(), Error>;
fn Enable(&self, fenable: BOOL) -> Result<(), Error>;
fn Synchronize(
&self,
ppszitemids: *const PCWSTR,
citems: u32,
hwndowner: HWND,
psessioncreator: Ref<'_, ISyncMgrSessionCreator>,
punk: Ref<'_, IUnknown>,
) -> Result<(), Error>;
}Required Methods§
fn GetName(&self) -> Result<PWSTR, Error>
fn GetHandlerInfo(&self) -> Result<ISyncMgrHandlerInfo, Error>
fn GetObject( &self, rguidobjectid: *const GUID, riid: *const GUID, ppv: *mut *mut c_void, ) -> Result<(), Error>
fn GetCapabilities(&self) -> Result<SYNCMGR_HANDLER_CAPABILITIES, Error>
fn GetPolicies(&self) -> Result<SYNCMGR_HANDLER_POLICIES, Error>
fn Activate(&self, factivate: BOOL) -> Result<(), Error>
fn Enable(&self, fenable: BOOL) -> Result<(), Error>
fn Synchronize( &self, ppszitemids: *const PCWSTR, citems: u32, hwndowner: HWND, psessioncreator: Ref<'_, ISyncMgrSessionCreator>, punk: Ref<'_, IUnknown>, ) -> Result<(), Error>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".