pub trait AuditAuthenticationAssurance {
// Provided method
fn audit_authentication_assurance(
&self,
authentication_assurance: &AuthenticationAssurance,
authentication_challenge: &AuthenticationChallenge,
) -> bool
where Self: Verifier { ... }
}Provided Methods§
fn audit_authentication_assurance(
&self,
authentication_assurance: &AuthenticationAssurance,
authentication_challenge: &AuthenticationChallenge,
) -> boolwhere
Self: Verifier,
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.