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.

Associated Types

Associated challenge type.

Required methods

Convert the config instance into a HTTP challenge.

Implementors