Trait AsyncIIdentityAuthentication_Impl
pub trait AsyncIIdentityAuthentication_Impl: IUnknownImpl {
// Required methods
fn Begin_SetIdentityCredential(
&self,
credbuffer: *const u8,
credbufferlength: u32,
) -> Result<()>;
fn Finish_SetIdentityCredential(&self) -> Result<()>;
fn Begin_ValidateIdentityCredential(
&self,
credbuffer: *const u8,
credbufferlength: u32,
ppidentityproperties: OutRef<'_, IPropertyStore>,
) -> Result<()>;
fn Finish_ValidateIdentityCredential(
&self,
ppidentityproperties: OutRef<'_, IPropertyStore>,
) -> Result<()>;
}
Required Methods§
fn Begin_SetIdentityCredential( &self, credbuffer: *const u8, credbufferlength: u32, ) -> Result<()>
fn Finish_SetIdentityCredential(&self) -> Result<()>
fn Begin_ValidateIdentityCredential( &self, credbuffer: *const u8, credbufferlength: u32, ppidentityproperties: OutRef<'_, IPropertyStore>, ) -> Result<()>
fn Finish_ValidateIdentityCredential( &self, 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.