Trait ICredentialProviderFilter_Impl
pub trait ICredentialProviderFilter_Impl: IUnknownImpl {
// Required methods
fn Filter(
&self,
cpus: CREDENTIAL_PROVIDER_USAGE_SCENARIO,
dwflags: u32,
rgclsidproviders: *const GUID,
rgballow: *mut BOOL,
cproviders: u32,
) -> Result<()>;
fn UpdateRemoteCredential(
&self,
pcpcsin: *const CREDENTIAL_PROVIDER_CREDENTIAL_SERIALIZATION,
pcpcsout: *mut CREDENTIAL_PROVIDER_CREDENTIAL_SERIALIZATION,
) -> Result<()>;
}
Required Methods§
fn Filter( &self, cpus: CREDENTIAL_PROVIDER_USAGE_SCENARIO, dwflags: u32, rgclsidproviders: *const GUID, rgballow: *mut BOOL, cproviders: u32, ) -> Result<()>
fn UpdateRemoteCredential( &self, pcpcsin: *const CREDENTIAL_PROVIDER_CREDENTIAL_SERIALIZATION, pcpcsout: *mut CREDENTIAL_PROVIDER_CREDENTIAL_SERIALIZATION, ) -> 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.