1
0
mirror of https://github.com/actix/actix-extras.git synced 2024-11-23 23:51:06 +01:00
actix-extras/actix_web_httpauth/index.html

15 lines
5.8 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!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="HTTP authentication schemes for Actix Web."><title>actix_web_httpauth - Rust</title><link rel="preload" as="font" type="font/woff2" crossorigin href="../static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2"><link rel="preload" as="font" type="font/woff2" crossorigin href="../static.files/FiraSans-Regular-018c141bf0843ffd.woff2"><link rel="preload" as="font" type="font/woff2" crossorigin href="../static.files/FiraSans-Medium-8f9a781e4970d388.woff2"><link rel="preload" as="font" type="font/woff2" crossorigin href="../static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2"><link rel="preload" as="font" type="font/woff2" crossorigin href="../static.files/SourceCodePro-Semibold-d899c5a5c4aeb14a.ttf.woff2"><link rel="stylesheet" href="../static.files/normalize-76eba96aa4d2e634.css"><link rel="stylesheet" href="../static.files/rustdoc-4e54bb2b497cc83f.css"><meta name="rustdoc-vars" data-root-path="../" data-static-root-path="../static.files/" data-current-crate="actix_web_httpauth" data-themes="" data-resource-suffix="" data-rustdoc-version="1.77.0-nightly (595bc6f00 2024-01-05)" data-channel="nightly" data-search-js="search-c17e98913a53b3b7.js" data-settings-js="settings-4313503d2e1961c2.js" ><script src="../static.files/storage-f2adc0d6ca4d09fb.js"></script><script defer src="../crates.js"></script><script defer src="../static.files/main-0b2e2def73e61cbe.js"></script><noscript><link rel="stylesheet" href="../static.files/noscript-04d5337699b92874.css"></noscript><link rel="icon" href="https://actix.rs/favicon.ico"></head><body class="rustdoc mod crate"><!--[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" title="show sidebar"></button><a class="logo-container" href="../actix_web_httpauth/index.html"><img src="https://actix.rs/img/logo.png" alt=""></a></nav><nav class="sidebar"><div class="sidebar-crate"><a class="logo-container" href="../actix_web_httpauth/index.html"><img src="https://actix.rs/img/logo.png" alt="logo"></a><h2><a href="../actix_web_httpauth/index.html">actix_web_httpauth</a><span class="version">0.8.1</span></h2></div><div class="sidebar-elems"><ul class="block">
<li><a id="all-types" href="all.html">All Items</a></li></ul><section><ul class="block"><li><a href="#modules">Modules</a></li></ul></section></div></nav><div class="sidebar-resizer"></div>
<main><div class="width-limiter"><nav class="sub"><form class="search-form"><span></span><div id="sidebar-button" tabindex="-1"><a href="../actix_web_httpauth/all.html" title="show sidebar"></a></div><input class="search-input" name="search" aria-label="Run search in the documentation" autocomplete="off" spellcheck="false" placeholder="Click or press S to search, ? for more options…" type="search"><div id="help-button" tabindex="-1"><a href="../help.html" title="help">?</a></div><div id="settings-menu" tabindex="-1"><a href="../settings.html" title="settings"><img width="22" height="22" alt="Change settings" src="../static.files/wheel-7b819b6101059cd0.svg"></a></div></form></nav><section id="main-content" class="content"><div class="main-heading"><h1>Crate <a class="mod" href="#">actix_web_httpauth</a><button id="copy-path" title="Copy item path to clipboard"><img src="../static.files/clipboard-7571035ce49a181d.svg" width="19" height="18" alt="Copy item path"></button></h1><span class="out-of-band"><a class="src" href="../src/actix_web_httpauth/lib.rs.html#1-27">source</a> · <button id="toggle-all-docs" title="collapse all docs">[<span>&#x2212;</span>]</button></span></div><details class="toggle top-doc" open><summary class="hideme"><span>Expand description</span></summary><div class="docblock"><p>HTTP authentication schemes for <a href="https://actix.rs">Actix Web</a>.</p>
<p>Provides:</p>
<ul>
<li>Typed <a href="headers/authorization/struct.Authorization.html" title="struct actix_web_httpauth::headers::authorization::Authorization">Authorization</a> and <a href="headers/www_authenticate/struct.WwwAuthenticate.html" title="struct actix_web_httpauth::headers::www_authenticate::WwwAuthenticate">WWW-Authenticate</a> headers</li>
<li><a href="https://actix.rs/docs/extractors">Extractors</a> for an <a href="headers/authorization/struct.Authorization.html" title="struct actix_web_httpauth::headers::authorization::Authorization">Authorization</a> header</li>
<li><a href="middleware/index.html" title="mod actix_web_httpauth::middleware">Middleware</a> for easier authorization checking</li>
</ul>
<h3 id="supported-schemes"><a href="#supported-schemes">Supported schemes</a></h3>
<ul>
<li><code>Bearer</code> as defined in <a href="https://tools.ietf.org/html/rfc6750">RFC 6750</a>.</li>
<li><code>Basic</code> as defined in <a href="https://tools.ietf.org/html/rfc7617">RFC 7617</a>.</li>
</ul>
</div></details><h2 id="modules" class="section-header"><a href="#modules">Modules</a></h2><ul class="item-table"><li><div class="item-name"><a class="mod" href="extractors/index.html" title="mod actix_web_httpauth::extractors">extractors</a></div><div class="desc docblock-short">Type-safe authentication information extractors.</div></li><li><div class="item-name"><a class="mod" href="headers/index.html" title="mod actix_web_httpauth::headers">headers</a></div><div class="desc docblock-short">Typed HTTP headers.</div></li><li><div class="item-name"><a class="mod" href="middleware/index.html" title="mod actix_web_httpauth::middleware">middleware</a></div><div class="desc docblock-short">HTTP Authentication middleware.</div></li></ul></section></div></main></body></html>