Struct hyper::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
531
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]
fn clone(&self) -> AccessControlMaxAge
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for AccessControlMaxAge
[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result
[src]
Formats the value using the given formatter. Read more
impl PartialEq for AccessControlMaxAge
[src]
fn eq(&self, __arg_0: &AccessControlMaxAge) -> bool
[src]
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &AccessControlMaxAge) -> bool
[src]
This method tests for !=
.
impl Deref for AccessControlMaxAge
[src]
type Target = u32
The resulting type after dereferencing.
fn deref(&self) -> &u32
[src]
Dereferences the value.
impl DerefMut for AccessControlMaxAge
[src]
impl Header for AccessControlMaxAge
[src]
fn header_name() -> &'static str
[src]
Returns the name of the header field this belongs to. Read more
fn parse_header(raw: &Raw) -> Result<Self>
[src]
Parse a header from a raw stream of bytes. Read more
fn fmt_header(&self, f: &mut Formatter) -> Result
[src]
Format a header to outgoing stream. Read more