Trait actix_web_httpauth::extractors::AuthExtractorConfig [−][src]
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
Required methods
fn into_inner(self) -> Self::Inner
fn into_inner(self) -> Self::Inner
Convert the config instance into a HTTP challenge.