pub trait AuthExtractorConfig {
type Inner: Challenge;
// Required method
fn into_inner(self) -> Self::Inner;
}Expand description
Trait implemented for types that provides configuration for the authentication extractors.
Required Associated Types§
Required Methods§
Sourcefn into_inner(self) -> Self::Inner
fn into_inner(self) -> Self::Inner
Convert the config instance into a HTTP challenge.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".