Trusted by 2 Mn+ QAs & Devs to accelerate their release cycles
Last updated on : 2023-03-20
This message appears because this site is only accessible over a secure connection HTTPS.
struct.StrictTransportSecurity.html
Source:struct.StrictTransportSecurity.html
1<!DOCTYPE html>2<html lang="en">3<head>4 <meta charset="utf-8">5 <meta name="viewport" content="width=device-width, initial-scale=1.0">6 <meta name="generator" content="rustdoc">7 <meta name="description" content="API documentation for the Rust `StrictTransportSecurity` struct in crate `iron`.">8 <meta name="keywords" content="rust, rustlang, rust-lang, StrictTransportSecurity">9 <title>iron::headers::StrictTransportSecurity - Rust</title>10 <link rel="stylesheet" type="text/css" href="../../main.css">11 <link rel="shortcut icon" href="https://avatars0.githubusercontent.com/u/7853871?s=256">12 13</head>14<body class="rustdoc">15 <!--[if lte IE 8]>16 <div class="warning">17 This old browser is unsupported and will most likely display funky18 things.19 </div>20 <![endif]-->21 22 <nav class="sidebar">23 <a href='../../iron/index.html'><img src='https://avatars0.githubusercontent.com/u/7853871?s=128' alt='' width='100'></a>24 <p class='location'><a href='../index.html'>iron</a>::<wbr><a href='index.html'>headers</a></p><script>window.sidebarCurrent = {name: 'StrictTransportSecurity', ty: 'struct', relpath: ''};</script><script defer src="sidebar-items.js"></script>25 </nav>26 <nav class="sub">27 <form class="search-form js-only">28 <div class="search-container">29 <input class="search-input" name="search"30 autocomplete="off"31 placeholder="Click or press âSâ to search, â?â for more optionsâ¦"32 type="search">33 </div>34 </form>35 </nav>36 <section id='main' class="content struct">37<h1 class='fqn'><span class='in-band'>Struct <a href='../index.html'>iron</a>::<wbr><a href='index.html'>headers</a>::<wbr><a class='struct' href=''>StrictTransportSecurity</a></span><span class='out-of-band'><span id='render-detail'>38 <a id="toggle-all-docs" href="javascript:void(0)" title="collapse all docs">39 [<span class='inner'>−</span>]40 </a>41 </span><a id='src-3755' class='srclink' href='../../hyper/header/common/strict_transport_security/struct.StrictTransportSecurity.html?gotosrc=3755' title='goto source code'>[src]</a></span></h1>42<pre class='rust struct'>pub struct StrictTransportSecurity {43 pub include_subdomains: <a href='https://doc.rust-lang.org/nightly/std/primitive.bool.html'>bool</a>,44 pub max_age: <a href='https://doc.rust-lang.org/nightly/std/primitive.u64.html'>u64</a>,45}</pre><div class='docblock'><p><code>StrictTransportSecurity</code> header, defined in <a href="https://tools.ietf.org/html/rfc6797">RFC6797</a></p>46<p>This specification defines a mechanism enabling web sites to declare47themselves accessible only via secure connections and/or for users to be48able to direct their user agent(s) to interact with given sites only over49secure connections. This overall policy is referred to as HTTP Strict50Transport Security (HSTS). The policy is declared by web sites via the51Strict-Transport-Security HTTP response header field and/or by other means,52such as user agent configuration, for example.</p>53<h1 id='abnf' class='section-header'><a href='#abnf'>ABNF</a></h1>54<pre><code class="language-plain"> [ directive ] *( ";" [ directive ] )55 directive = directive-name [ "=" directive-value ]56 directive-name = token57 directive-value = token | quoted-string58</code></pre>59<h1 id='example-values' class='section-header'><a href='#example-values'>Example values</a></h1>60<ul>61<li><code>max-age=31536000</code></li>62<li><code>max-age=15768000 ; includeSubDomains</code></li>63</ul>64<h1 id='example' class='section-header'><a href='#example'>Example</a></h1><pre class='rust rust-example-rendered'>65<span class='kw'>use</span> <span class='ident'>hyper</span>::<span class='ident'>header</span>::{<span class='ident'>Headers</span>, <span class='ident'>StrictTransportSecurity</span>};66<span class='kw'>let</span> <span class='kw-2'>mut</span> <span class='ident'>headers</span> <span class='op'>=</span> <span class='ident'>Headers</span>::<span class='ident'>new</span>();67<span class='ident'>headers</span>.<span class='ident'>set</span>(68 <span class='ident'>StrictTransportSecurity</span>::<span class='ident'>including_subdomains</span>(<span class='number'>31536000u64</span>)69);</pre>70</div><h2 class='fields'>Fields</h2>71<table><tr class='stab '>72 <td id='structfield.include_subdomains'><code>include_subdomains</code></td><td><div class='docblock'><p>Signals the UA that the HSTS Policy applies to this HSTS Host as well as73any subdomains of the host's domain name.</p>74</div></td></tr><tr class='stab '>75 <td id='structfield.max_age'><code>max_age</code></td><td><div class='docblock'><p>Specifies the number of seconds, after the reception of the STS header76field, during which the UA regards the host (from whom the message was77received) as a Known HSTS Host.</p>78</div></td></tr></table><h2 id='methods'>Methods</h2><h3 class='impl'><code>impl <a class='struct' href='../../iron/headers/struct.StrictTransportSecurity.html' title='iron::headers::StrictTransportSecurity'>StrictTransportSecurity</a></code></h3><div class='impl-items'><h4 id='method.including_subdomains' class='method'><code>fn <a href='#method.including_subdomains' class='fnname'>including_subdomains</a>(max_age: <a href='https://doc.rust-lang.org/nightly/std/primitive.u64.html'>u64</a>) -> <a class='struct' href='../../iron/headers/struct.StrictTransportSecurity.html' title='iron::headers::StrictTransportSecurity'>StrictTransportSecurity</a></code></h4>79<div class='docblock'><p>Create an STS header that includes subdomains</p>80</div><h4 id='method.excluding_subdomains' class='method'><code>fn <a href='#method.excluding_subdomains' class='fnname'>excluding_subdomains</a>(max_age: <a href='https://doc.rust-lang.org/nightly/std/primitive.u64.html'>u64</a>) -> <a class='struct' href='../../iron/headers/struct.StrictTransportSecurity.html' title='iron::headers::StrictTransportSecurity'>StrictTransportSecurity</a></code></h4>81<div class='docblock'><p>Create an STS header that excludes subdomains</p>82</div></div><h2 id='implementations'>Trait Implementations</h2><h3 class='impl'><code>impl <a class='trait' href='https://doc.rust-lang.org/nightly/core/str/trait.FromStr.html' title='core::str::FromStr'>FromStr</a> for <a class='struct' href='../../iron/headers/struct.StrictTransportSecurity.html' title='iron::headers::StrictTransportSecurity'>StrictTransportSecurity</a></code></h3><div class='impl-items'><h4 id='assoc_type.Err' class='type'><code>type Err = <a class='enum' href='../../iron/error/enum.HttpError.html' title='iron::error::HttpError'>Error</a></code></h4>83<h4 id='method.from_str' class='method'><code>fn <a href='https://doc.rust-lang.org/nightly/core/str/trait.FromStr.html#method.from_str' class='fnname'>from_str</a>(s: &<a href='https://doc.rust-lang.org/nightly/std/primitive.str.html'>str</a>) -> <a class='enum' href='https://doc.rust-lang.org/nightly/core/result/enum.Result.html' title='core::result::Result'>Result</a><<a class='struct' href='../../iron/headers/struct.StrictTransportSecurity.html' title='iron::headers::StrictTransportSecurity'>StrictTransportSecurity</a>, <a class='enum' href='../../iron/error/enum.HttpError.html' title='iron::error::HttpError'>Error</a>></code></h4>84</div><h3 class='impl'><code>impl <a class='trait' href='../../iron/headers/trait.Header.html' title='iron::headers::Header'>Header</a> for <a class='struct' href='../../iron/headers/struct.StrictTransportSecurity.html' title='iron::headers::StrictTransportSecurity'>StrictTransportSecurity</a></code></h3><div class='impl-items'><h4 id='method.header_name' class='method'><code>fn <a href='../../iron/headers/trait.Header.html#method.header_name' class='fnname'>header_name</a>() -> &'static <a href='https://doc.rust-lang.org/nightly/std/primitive.str.html'>str</a></code></h4>85<h4 id='method.parse_header' class='method'><code>fn <a href='../../iron/headers/trait.Header.html#method.parse_header' class='fnname'>parse_header</a>(raw: <a href='https://doc.rust-lang.org/nightly/std/primitive.slice.html'>&[</a><a class='struct' href='https://doc.rust-lang.org/nightly/collections/vec/struct.Vec.html' title='collections::vec::Vec'>Vec</a><<a href='https://doc.rust-lang.org/nightly/std/primitive.u8.html'>u8</a>><a href='https://doc.rust-lang.org/nightly/std/primitive.slice.html'>]</a>) -> <a class='enum' href='https://doc.rust-lang.org/nightly/core/result/enum.Result.html' title='core::result::Result'>Result</a><<a class='struct' href='../../iron/headers/struct.StrictTransportSecurity.html' title='iron::headers::StrictTransportSecurity'>StrictTransportSecurity</a>, <a class='enum' href='../../iron/error/enum.HttpError.html' title='iron::error::HttpError'>Error</a>></code></h4>86</div><h3 class='impl'><code>impl <a class='trait' href='../../iron/headers/trait.HeaderFormat.html' title='iron::headers::HeaderFormat'>HeaderFormat</a> for <a class='struct' href='../../iron/headers/struct.StrictTransportSecurity.html' title='iron::headers::StrictTransportSecurity'>StrictTransportSecurity</a></code></h3><div class='impl-items'><h4 id='method.fmt_header' class='method'><code>fn <a href='../../iron/headers/trait.HeaderFormat.html#method.fmt_header' class='fnname'>fmt_header</a>(&self, f: &mut <a class='struct' href='https://doc.rust-lang.org/nightly/core/fmt/struct.Formatter.html' title='core::fmt::Formatter'>Formatter</a>) -> <a class='enum' href='https://doc.rust-lang.org/nightly/core/result/enum.Result.html' title='core::result::Result'>Result</a><<a href='https://doc.rust-lang.org/nightly/std/primitive.tuple.html'>()</a>, <a class='struct' href='https://doc.rust-lang.org/nightly/core/fmt/struct.Error.html' title='core::fmt::Error'>Error</a>></code></h4>87</div><h3 id='derived_implementations'>Derived Implementations </h3><h3 class='impl'><code>impl <a class='trait' href='https://doc.rust-lang.org/nightly/core/fmt/trait.Debug.html' title='core::fmt::Debug'>Debug</a> for <a class='struct' href='../../iron/headers/struct.StrictTransportSecurity.html' title='iron::headers::StrictTransportSecurity'>StrictTransportSecurity</a></code></h3><div class='impl-items'><h4 id='method.fmt' class='method'><code>fn <a href='https://doc.rust-lang.org/nightly/core/fmt/trait.Debug.html#method.fmt' class='fnname'>fmt</a>(&self, __arg_0: &mut <a class='struct' href='https://doc.rust-lang.org/nightly/core/fmt/struct.Formatter.html' title='core::fmt::Formatter'>Formatter</a>) -> <a class='enum' href='https://doc.rust-lang.org/nightly/core/result/enum.Result.html' title='core::result::Result'>Result</a><<a href='https://doc.rust-lang.org/nightly/std/primitive.tuple.html'>()</a>, <a class='struct' href='https://doc.rust-lang.org/nightly/core/fmt/struct.Error.html' title='core::fmt::Error'>Error</a>></code></h4>88</div><h3 class='impl'><code>impl <a class='trait' href='https://doc.rust-lang.org/nightly/core/cmp/trait.PartialEq.html' title='core::cmp::PartialEq'>PartialEq</a><<a class='struct' href='../../iron/headers/struct.StrictTransportSecurity.html' title='iron::headers::StrictTransportSecurity'>StrictTransportSecurity</a>> for <a class='struct' href='../../iron/headers/struct.StrictTransportSecurity.html' title='iron::headers::StrictTransportSecurity'>StrictTransportSecurity</a></code></h3><div class='impl-items'><h4 id='method.eq' class='method'><code>fn <a href='https://doc.rust-lang.org/nightly/core/cmp/trait.PartialEq.html#method.eq' class='fnname'>eq</a>(&self, __arg_0: &<a class='struct' href='../../iron/headers/struct.StrictTransportSecurity.html' title='iron::headers::StrictTransportSecurity'>StrictTransportSecurity</a>) -> <a href='https://doc.rust-lang.org/nightly/std/primitive.bool.html'>bool</a></code></h4>89<h4 id='method.ne' class='method'><code>fn <a href='https://doc.rust-lang.org/nightly/core/cmp/trait.PartialEq.html#method.ne' class='fnname'>ne</a>(&self, __arg_0: &<a class='struct' href='../../iron/headers/struct.StrictTransportSecurity.html' title='iron::headers::StrictTransportSecurity'>StrictTransportSecurity</a>) -> <a href='https://doc.rust-lang.org/nightly/std/primitive.bool.html'>bool</a></code></h4>90</div><h3 class='impl'><code>impl <a class='trait' href='https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html' title='core::clone::Clone'>Clone</a> for <a class='struct' href='../../iron/headers/struct.StrictTransportSecurity.html' title='iron::headers::StrictTransportSecurity'>StrictTransportSecurity</a></code></h3><div class='impl-items'><h4 id='method.clone' class='method'><code>fn <a href='https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html#method.clone' class='fnname'>clone</a>(&self) -> <a class='struct' href='../../iron/headers/struct.StrictTransportSecurity.html' title='iron::headers::StrictTransportSecurity'>StrictTransportSecurity</a></code></h4>91<h4 id='method.clone_from' class='method'><code>fn <a href='https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html#method.clone_from' class='fnname'>clone_from</a>(&mut self, source: &Self)</code></h4>92</div></section>93 <section id='search' class="content hidden"></section>94 <section class="footer"></section>95 <aside id="help" class="hidden">96 <div>97 <h1 class="hidden">Help</h1>98 <div class="shortcuts">99 <h2>Keyboard Shortcuts</h2>100 <dl>101 <dt>?</dt>102 <dd>Show this help dialog</dd>103 <dt>S</dt>104 <dd>Focus the search field</dd>105 <dt>⇤</dt>106 <dd>Move up in search results</dd>107 <dt>⇥</dt>108 <dd>Move down in search results</dd>109 <dt>⏎</dt>110 <dd>Go to active search result</dd>111 </dl>112 </div>113 <div class="infos">114 <h2>Search Tricks</h2>115 <p>116 Prefix searches with a type followed by a colon (e.g.117 <code>fn:</code>) to restrict the search to a given type.118 </p>119 <p>120 Accepted types are: <code>fn</code>, <code>mod</code>,121 <code>struct</code>, <code>enum</code>,122 <code>trait</code>, <code>type</code>, <code>macro</code>,123 and <code>const</code>.124 </p>125 <p>126 Search functions by type signature (e.g.127 <code>vec -> usize</code>)128 </p>129 </div>130 </div>131 </aside>132 133 <script>134 window.rootPath = "../../";135 window.currentCrate = "iron";136 window.playgroundUrl = "";137 </script>138 <script src="../../jquery.js"></script>139 <script src="../../main.js"></script>140 141 <script async src="../../search-index.js"></script>142</body>...
Browser Support For Android Browser Versions
Browser Support For Chrome for Android Versions
Browser Support For Firefox for Android Versions
Debug webpages on the go with LT Debug Chrome extension.
Add to ChromeTest your website on 3000+ real browsers and operating systems for mobile and desktop with the LambdaTest cloud. Perform browser compatibility test for Strict Transport Security and many more web technologies that are a part of your website or web-application.
Last Modified date
2023-03-20
Data sourced from
Debug webpages on the go with LT Debug Chrome extension.
Add to ChromeHarness the power of Chromium-based engine to deliver responsive websites and web apps.
Try for freeGet 100 minutes of automation test minutes FREE!!