[][src]Trait actix_web_httpauth::extractors::AuthExtractorConfig

pub trait AuthExtractorConfig {
    type Inner: Challenge;
    fn into_inner(self) -> Self::Inner;
}

Trait implemented for types that provides configuration for the authentication extractors.

Associated Types

type Inner: Challenge

Associated challenge type.

Loading content...

Required methods

fn into_inner(self) -> Self::Inner

Convert the config instance into a HTTP challenge.

Loading content...

Implementors

impl AuthExtractorConfig for actix_web_httpauth::extractors::basic::Config[src]

type Inner = Challenge

impl AuthExtractorConfig for actix_web_httpauth::extractors::bearer::Config[src]

type Inner = Bearer

Loading content...