windows::Win32::System::WindowsSync

Trait ISyncProviderConfigUI_Impl

pub trait ISyncProviderConfigUI_Impl: IUnknownImpl {
    // Required methods
    fn Init(
        &self,
        pguidinstanceid: *const GUID,
        pguidcontenttype: *const GUID,
        pconfigurationproperties: Ref<'_, IPropertyStore>,
    ) -> Result<()>;
    fn GetRegisteredProperties(&self) -> Result<IPropertyStore>;
    fn CreateAndRegisterNewSyncProvider(
        &self,
        hwndparent: HWND,
        punkcontext: Ref<'_, IUnknown>,
    ) -> Result<ISyncProviderInfo>;
    fn ModifySyncProvider(
        &self,
        hwndparent: HWND,
        punkcontext: Ref<'_, IUnknown>,
        pproviderinfo: Ref<'_, ISyncProviderInfo>,
    ) -> Result<()>;
}

Required Methods§

fn Init( &self, pguidinstanceid: *const GUID, pguidcontenttype: *const GUID, pconfigurationproperties: Ref<'_, IPropertyStore>, ) -> Result<()>

fn GetRegisteredProperties(&self) -> Result<IPropertyStore>

fn CreateAndRegisterNewSyncProvider( &self, hwndparent: HWND, punkcontext: Ref<'_, IUnknown>, ) -> Result<ISyncProviderInfo>

fn ModifySyncProvider( &self, hwndparent: HWND, punkcontext: Ref<'_, IUnknown>, pproviderinfo: Ref<'_, ISyncProviderInfo>, ) -> 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.

Implementors§