Trait IAssociatedIdentityProvider_Impl
pub trait IAssociatedIdentityProvider_Impl: IUnknownImpl {
// Required methods
fn AssociateIdentity(&self, hwndparent: HWND) -> Result<IPropertyStore>;
fn DisassociateIdentity(
&self,
hwndparent: HWND,
lpszuniqueid: &PCWSTR,
) -> Result<()>;
fn ChangeCredential(
&self,
hwndparent: HWND,
lpszuniqueid: &PCWSTR,
) -> Result<()>;
}
Required Methods§
fn AssociateIdentity(&self, hwndparent: HWND) -> Result<IPropertyStore>
fn DisassociateIdentity( &self, hwndparent: HWND, lpszuniqueid: &PCWSTR, ) -> Result<()>
fn ChangeCredential( &self, hwndparent: HWND, lpszuniqueid: &PCWSTR, ) -> 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.