[−][src]Struct headers::StrictTransportSecurity
StrictTransportSecurity
header, defined in RFC6797
This specification defines a mechanism enabling web sites to declare themselves accessible only via secure connections and/or for users to be able to direct their user agent(s) to interact with given sites only over secure connections. This overall policy is referred to as HTTP Strict Transport Security (HSTS). The policy is declared by web sites via the Strict-Transport-Security HTTP response header field and/or by other means, such as user agent configuration, for example.
ABNF
[ directive ] *( ";" [ directive ] )
directive = directive-name [ "=" directive-value ]
directive-name = token
directive-value = token | quoted-string
Example values
max-age=31536000
max-age=15768000 ; includeSubdomains
Example
use std::time::Duration; use headers::StrictTransportSecurity; let sts = StrictTransportSecurity::including_subdomains(Duration::from_secs(31_536_000));
Implementations
impl StrictTransportSecurity
[src]
pub fn including_subdomains(max_age: Duration) -> StrictTransportSecurity
[src]
Create an STS header that includes subdomains
pub fn excluding_subdomains(max_age: Duration) -> StrictTransportSecurity
[src]
Create an STS header that excludes subdomains
pub fn include_subdomains(&self) -> bool
[src]
Get whether this should include subdomains.
pub fn max_age(&self) -> Duration
[src]
Get the max-age.
Trait Implementations
impl Clone for StrictTransportSecurity
[src]
fn clone(&self) -> StrictTransportSecurity
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Debug for StrictTransportSecurity
[src]
impl Header for StrictTransportSecurity
[src]
fn name() -> &'static HeaderName
[src]
fn decode<'i, I: Iterator<Item = &'i HeaderValue>>(
values: &mut I
) -> Result<Self, Error>
[src]
values: &mut I
) -> Result<Self, Error>
fn encode<E: Extend<HeaderValue>>(&self, values: &mut E)
[src]
impl PartialEq<StrictTransportSecurity> for StrictTransportSecurity
[src]
fn eq(&self, other: &StrictTransportSecurity) -> bool
[src]
fn ne(&self, other: &StrictTransportSecurity) -> bool
[src]
impl StructuralPartialEq for StrictTransportSecurity
[src]
Auto Trait Implementations
impl RefUnwindSafe for StrictTransportSecurity
impl Send for StrictTransportSecurity
impl Sync for StrictTransportSecurity
impl Unpin for StrictTransportSecurity
impl UnwindSafe for StrictTransportSecurity
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> Same<T> for T
[src]
type Output = T
Should always be Self
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,