Trait IIdentityStoreEx_Impl
pub trait IIdentityStoreEx_Impl: IUnknownImpl {
// Required methods
fn CreateConnectedIdentity(
&self,
localname: &PCWSTR,
connectedname: &PCWSTR,
providerguid: *const GUID,
) -> Result<()>;
fn DeleteConnectedIdentity(
&self,
connectedname: &PCWSTR,
providerguid: *const GUID,
) -> Result<()>;
}
Required Methods§
fn CreateConnectedIdentity( &self, localname: &PCWSTR, connectedname: &PCWSTR, providerguid: *const GUID, ) -> Result<()>
fn DeleteConnectedIdentity( &self, connectedname: &PCWSTR, providerguid: *const GUID, ) -> 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.