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

Associated challenge type.

Required Methods

Convert the config instance into a HTTP challenge.

Implementors