Struct rustful::header::AccessControlMaxAge [] [src]

pub struct AccessControlMaxAge(pub u32);

Access-Control-Max-Age header, part of CORS

The Access-Control-Max-Age header indicates how long the results of a preflight request can be cached in a preflight result cache.

ABNF

Access-Control-Max-Age = \"Access-Control-Max-Age\" \":\" delta-seconds

Example values

Examples

use hyper::header::{Headers, AccessControlMaxAge};

let mut headers = Headers::new();
headers.set(AccessControlMaxAge(1728000u32));

Methods from Deref<Target = u32>

Trait Implementations

impl Clone for AccessControlMaxAge
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for AccessControlMaxAge
[src]

Formats the value using the given formatter. Read more

impl DerefMut for AccessControlMaxAge
[src]

Mutably dereferences the value.

impl HeaderFormat for AccessControlMaxAge
[src]

Format a header to be output into a TcpStream. Read more

impl Header for AccessControlMaxAge
[src]

Returns the name of the header field this belongs to. Read more

Parse a header from a raw stream of bytes. Read more

impl PartialEq<AccessControlMaxAge> for AccessControlMaxAge
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Display for AccessControlMaxAge
[src]

Formats the value using the given formatter. Read more

impl Deref for AccessControlMaxAge
[src]

The resulting type after dereferencing.

Dereferences the value.

Auto Trait Implementations

impl Send for AccessControlMaxAge

impl Sync for AccessControlMaxAge