pub trait AuthExtractorConfig {
type Inner: Challenge;
fn into_inner(self) -> Self::Inner;
}
Expand description
Trait implemented for types that provides configuration for the authentication extractors.
Required Associated Types
Required Methods
fn into_inner(self) -> Self::Inner
fn into_inner(self) -> Self::Inner
Convert the config instance into a HTTP challenge.