Trait ICredentialProviderUserArray_Impl
pub trait ICredentialProviderUserArray_Impl: IUnknownImpl {
    // Required methods
    fn SetProviderFilter(
        &self,
        guidprovidertofilterto: *const GUID,
    ) -> Result<()>;
    fn GetAccountOptions(&self) -> Result<CREDENTIAL_PROVIDER_ACCOUNT_OPTIONS>;
    fn GetCount(&self) -> Result<u32>;
    fn GetAt(&self, userindex: u32) -> Result<ICredentialProviderUser>;
}Required Methods§
fn SetProviderFilter(&self, guidprovidertofilterto: *const GUID) -> Result<()>
fn GetAccountOptions(&self) -> Result<CREDENTIAL_PROVIDER_ACCOUNT_OPTIONS>
fn GetCount(&self) -> Result<u32>
fn GetAt(&self, userindex: u32) -> Result<ICredentialProviderUser>
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.