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.