windows::Win32::Security::Authentication::Identity::Provider

Trait IIdentityAuthentication_Impl

pub trait IIdentityAuthentication_Impl: IUnknownImpl {
    // Required methods
    fn SetIdentityCredential(
        &self,
        credbuffer: *const u8,
        credbufferlength: u32,
    ) -> Result<()>;
    fn ValidateIdentityCredential(
        &self,
        credbuffer: *const u8,
        credbufferlength: u32,
        ppidentityproperties: OutRef<'_, IPropertyStore>,
    ) -> Result<()>;
}

Required Methods§

fn SetIdentityCredential( &self, credbuffer: *const u8, credbufferlength: u32, ) -> Result<()>

fn ValidateIdentityCredential( &self, credbuffer: *const u8, credbufferlength: u32, ppidentityproperties: OutRef<'_, IPropertyStore>, ) -> 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§