2021-03-22 11:49:07 +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/lib.rs`." > < meta name = "keywords" content = "rust, rustlang, rust-lang" > < title > lib.rs - source< / title > < 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 = "../../light.css" id = "themeStyle" > < link rel = "stylesheet" type = "text/css" href = "../../dark.css" disabled > < link rel = "stylesheet" type = "text/css" href = "../../ayu.css" disabled > < script id = "default-settings" > < / script > < script src = "../../storage.js" > < / script > < script src = "../../crates.js" > < / script > < noscript > < link rel = "stylesheet" href = "../../noscript.css" > < / noscript > < link rel = "icon" type = "image/svg+xml" href = "../../favicon.svg" >
< link rel = "alternate icon" type = "image/png" href = "../../favicon-16x16.png" >
2021-04-02 10:47:22 +00:00
< link rel = "alternate icon" type = "image/png" href = "../../favicon-32x32.png" > < style type = "text/css" > # crate-search { background-image : url ( "../../down-arrow.svg" ) ; } < / style > < / head > < body class = "rustdoc source" > <!-- [if lte IE 8]><div class="warning">This old browser is unsupported and will most likely display funky things.</div><![endif] --> < nav class = "sidebar" > < div class = "sidebar-menu" role = "button" > ☰ < / div > < a href = '../../actix_web_httpauth/index.html' > < div class = 'logo-container rust-logo' > < img src = '../../rust-logo.png' alt = 'logo' > < / div > < / a > < / nav > < div class = "theme-picker" > < button id = "theme-picker" aria-label = "Pick another theme!" aria-haspopup = "menu" > < img src = "../../brush.svg" width = "18" height = "18" alt = "Pick another theme!" > < / button > < div id = "theme-choices" role = "menu" > < / div > < / div > < nav class = "sub" > < form class = "search-form" > < div class = "search-container" > < div > < select id = "crate-search" > < option value = "All crates" > All crates< / option > < / select > < input class = "search-input" name = "search" disabled autocomplete = "off" spellcheck = "false" placeholder = "Click or press ‘ S’ to search, ‘ ?’ for more options…" type = "search" > < / div > < button type = "button" class = "help-button" > ?< / button >
2021-03-22 11:49:07 +00:00
< a id = "settings-menu" href = "../../settings.html" > < img src = "../../wheel.svg" width = "18" height = "18" alt = "Change settings" > < / a > < / div > < / form > < / nav > < section id = "main" class = "content" > < pre class = "line-numbers" > < span id = "1" > 1< / span >
< 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 >
< span id = "24" > 24< / span >
< / pre > < div class = "example-wrap" > < pre class = "rust " >
< span class = "doccomment" > //! HTTP authentication schemes for [actix-web](https://actix.rs).< / span >
< span class = "doccomment" > //!< / span >
< span class = "doccomment" > //! Provides:< / span >
< span class = "doccomment" > //! - Typed [Authorization] and [WWW-Authenticate] headers< / span >
< span class = "doccomment" > //! - [Extractors] for an [Authorization] header< / span >
< span class = "doccomment" > //! - [Middleware] for easier authorization checking< / span >
< span class = "doccomment" > //!< / span >
< span class = "doccomment" > //! ## Supported schemes< / span >
< span class = "doccomment" > //!< / span >
< span class = "doccomment" > //! - `Basic`, as defined in [RFC7617](https://tools.ietf.org/html/rfc7617)< / span >
< span class = "doccomment" > //! - `Bearer`, as defined in [RFC6750](https://tools.ietf.org/html/rfc6750)< / span >
< span class = "doccomment" > //!< / span >
< span class = "doccomment" > //! [Authorization]: `crate::headers::authorization::Authorization`< / span >
< span class = "doccomment" > //! [WWW-Authenticate]: `crate::headers::www_authenticate::WwwAuthenticate`< / span >
< span class = "doccomment" > //! [Extractors]: https://actix.rs/docs/extractors/< / span >
< span class = "doccomment" > //! [Middleware]: ./middleware< / span >
< span class = "attribute" > #![< span class = "ident" > deny< / span > (< span class = "ident" > missing_docs< / span > , < span class = "ident" > nonstandard_style< / span > , < span class = "ident" > rust_2018_idioms< / span > )]< / span >
< span class = "attribute" > #![< span class = "ident" > deny< / span > (< span class = "ident" > clippy< / span > ::< span class = "ident" > all< / span > )]< / span >
< span class = "kw" > pub< / span > < span class = "kw" > mod< / span > < span class = "ident" > extractors< / span > ;
< span class = "kw" > pub< / span > < span class = "kw" > mod< / span > < span class = "ident" > headers< / span > ;
< span class = "kw" > pub< / span > < span class = "kw" > mod< / span > < span class = "ident" > middleware< / span > ;
< span class = "kw" > mod< / span > < span class = "ident" > utils< / span > ;
< / pre > < / div >
< / section > < section id = "search" class = "content hidden" > < / section > < section class = "footer" > < / section > < div id = "rustdoc-vars" data-root-path = "../../" data-current-crate = "actix_web_httpauth" data-search-js = "../../search-index.js" > < / div >
< script src = "../../main.js" > < / script > < script src = "../../source-script.js" > < / script > < script src = "../../source-files.js" > < / script > < / body > < / html >