2022-01-19 17:10:36 +00:00
<!DOCTYPE html> < html lang = "en" > < head > < meta charset = "utf-8" > < meta name = "viewport" content = "width=device-width, initial-scale=1.0" > < meta name = "generator" content = "rustdoc" > < meta name = "description" content = "Source of the Rust file `actix-web-httpauth/src/extractors/config.rs`." > < meta name = "keywords" content = "rust, rustlang, rust-lang" > < title > config.rs - source< / title > < link rel = "preload" as = "font" type = "font/woff2" crossorigin href = "../../../SourceSerif4-Regular.ttf.woff2" > < link rel = "preload" as = "font" type = "font/woff2" crossorigin href = "../../../FiraSans-Regular.woff2" > < link rel = "preload" as = "font" type = "font/woff2" crossorigin href = "../../../FiraSans-Medium.woff2" > < link rel = "preload" as = "font" type = "font/woff2" crossorigin href = "../../../SourceCodePro-Regular.ttf.woff2" > < link rel = "preload" as = "font" type = "font/woff2" crossorigin href = "../../../SourceSerif4-Bold.ttf.woff2" > < link rel = "preload" as = "font" type = "font/woff2" crossorigin href = "../../../SourceCodePro-Semibold.ttf.woff2" > < link rel = "stylesheet" type = "text/css" href = "../../../normalize.css" > < link rel = "stylesheet" type = "text/css" href = "../../../rustdoc.css" id = "mainThemeStyle" > < link rel = "stylesheet" type = "text/css" href = "../../../ayu.css" disabled > < link rel = "stylesheet" type = "text/css" href = "../../../dark.css" disabled > < link rel = "stylesheet" type = "text/css" href = "../../../light.css" id = "themeStyle" > < script id = "default-settings" > < / script > < script src = "../../../storage.js" > < / script > < script src = "../../../crates.js" > < / script > < script defer src = "../../../main.js" > < / script > < script defer src = "../../../source-script.js" > < / script > < script defer src = "../../../source-files.js" > < / script >
2022-01-21 20:49:16 +00:00
< noscript > < link rel = "stylesheet" href = "../../../noscript.css" > < / noscript > < link rel = "alternate icon" type = "image/png" href = "../../../favicon-16x16.png" > < link rel = "alternate icon" type = "image/png" href = "../../../favicon-32x32.png" > < link rel = "icon" type = "image/svg+xml" href = "../../../favicon.svg" > < / head > < body class = "rustdoc source" > <!-- [if lte IE 11]><div class="warning">This old browser is unsupported and will most likely display funky things.</div><![endif] --> < nav class = "mobile-topbar" > < button class = "sidebar-menu-toggle" > ☰ < / button > < a class = "sidebar-logo" href = "../../../actix_web_httpauth/index.html" > < div class = "logo-container" > < img class = "rust-logo" src = "../../../rust-logo.svg" alt = "logo" > < / div >
< / a > < h2 class = "location" > < / h2 >
< / nav >
< nav class = "sidebar" > < a class = "sidebar-logo" href = "../../../actix_web_httpauth/index.html" > < div class = "logo-container" > < img class = "rust-logo" src = "../../../rust-logo.svg" alt = "logo" > < / div >
2022-01-28 17:20:03 +00:00
< / a > < / nav > < main > < div class = "width-limiter" > < div class = "sub-container" > < a class = "sub-logo-container" href = "../../../actix_web_httpauth/index.html" > < img class = "rust-logo" src = "../../../rust-logo.svg" alt = "logo" > < / a > < nav class = "sub" > < div class = "theme-picker hidden" > < button id = "theme-picker" aria-label = "Pick another theme!" aria-haspopup = "menu" title = "themes" > < img width = "22" height = "22" alt = "Pick another theme!" src = "../../../brush.svg" > < / button > < div id = "theme-choices" role = "menu" > < / div > < / div > < form class = "search-form" > < div class = "search-container" > < span > < / span > < input class = "search-input" name = "search" autocomplete = "off" spellcheck = "false" placeholder = "Click or press ‘ S’ to search, ‘ ?’ for more options…" type = "search" > < button type = "button" id = "help-button" title = "help" > ?< / button > < a id = "settings-menu" href = "../../../settings.html" title = "settings" > < img width = "22" height = "22" alt = "Change settings" src = "../../../wheel.svg" > < / a > < / div > < / form > < / nav > < / div > < section id = "main-content" class = "content" > < div class = "example-wrap" > < pre class = "line-numbers" > < span id = "1" > 1< / span >
2021-03-22 11:49:07 +00:00
< span id = "2" > 2< / span >
< span id = "3" > 3< / span >
< span id = "4" > 4< / span >
< span id = "5" > 5< / span >
< span id = "6" > 6< / span >
< span id = "7" > 7< / span >
< span id = "8" > 8< / span >
< span id = "9" > 9< / span >
< span id = "10" > 10< / span >
< span id = "11" > 11< / span >
< span id = "12" > 12< / span >
< span id = "13" > 13< / span >
< span id = "14" > 14< / span >
< span id = "15" > 15< / span >
< span id = "16" > 16< / span >
< span id = "17" > 17< / span >
< span id = "18" > 18< / span >
< span id = "19" > 19< / span >
< span id = "20" > 20< / span >
< span id = "21" > 21< / span >
< span id = "22" > 22< / span >
< span id = "23" > 23< / span >
2021-08-30 22:13:55 +00:00
< / pre > < pre class = "rust" > < code > < span class = "kw" > use< / span > < span class = "ident" > < span class = "kw" > super< / span > ::AuthenticationError< / span > ;
< span class = "kw" > use< / span > < span class = "ident" > < span class = "kw" > crate< / span > ::headers::www_authenticate::Challenge< / span > ;
2021-03-22 11:49:07 +00:00
< span class = "doccomment" > /// Trait implemented for types that provides configuration< / span >
< span class = "doccomment" > /// for the authentication [extractors].< / span >
< span class = "doccomment" > ///< / span >
< span class = "doccomment" > /// [extractors]: ./trait.AuthExtractor.html< / span >
< span class = "kw" > pub< / span > < span class = "kw" > trait< / span > < span class = "ident" > AuthExtractorConfig< / span > {
< span class = "doccomment" > /// Associated challenge type.< / span >
< span class = "kw" > type< / span > < span class = "ident" > Inner< / span > : < span class = "ident" > Challenge< / span > ;
< span class = "doccomment" > /// Convert the config instance into a HTTP challenge.< / span >
2021-10-11 01:57:28 +00:00
< span class = "kw" > fn< / span > < span class = "ident" > into_inner< / span > (< span class = "self" > self< / span > ) -> < span class = "ident" > < span class = "self" > Self< / span > ::Inner< / span > ;
2021-03-22 11:49:07 +00:00
}
2021-04-09 13:42:26 +00:00
< span class = "kw" > impl< / span > < span class = "op" > < < / span > < span class = "ident" > T< / span > < span class = "op" > > < / span > < span class = "ident" > From< / span > < span class = "op" > < < / span > < span class = "ident" > T< / span > < span class = "op" > > < / span > < span class = "kw" > for< / span > < span class = "ident" > AuthenticationError< / span > < span class = "op" > < < / span > < span class = "op" > < < / span > < span class = "ident" > T< / span > < span class = "kw" > as< / span > < span class = "ident" > AuthExtractorConfig< / span > < span class = "op" > > < / span > < span class = "ident" > ::Inner< / span > < span class = "op" > > < / span >
2021-03-22 11:49:07 +00:00
< span class = "kw" > where< / span >
< span class = "ident" > T< / span > : < span class = "ident" > AuthExtractorConfig< / span > ,
{
2021-10-11 01:57:28 +00:00
< span class = "kw" > fn< / span > < span class = "ident" > from< / span > (< span class = "ident" > config< / span > : < span class = "ident" > T< / span > ) -> < span class = "self" > Self< / span > {
2021-04-09 13:42:26 +00:00
< span class = "ident" > AuthenticationError::new< / span > (< span class = "ident" > config< / span > .< span class = "ident" > into_inner< / span > ())
2021-03-22 11:49:07 +00:00
}
}
2021-08-30 22:13:55 +00:00
< / code > < / pre > < / div >
2022-03-04 17:41:48 +00:00
< / section > < section id = "search" class = "content hidden" > < / section > < / div > < / main > < div id = "rustdoc-vars" data-root-path = "../../../" data-current-crate = "actix_web_httpauth" data-themes = "ayu,dark,light" data-resource-suffix = "" data-rustdoc-version = "1.61.0-nightly (10913c000 2022-03-03)" > < / div >
2021-06-27 06:05:12 +00:00
< / body > < / html >