Struct rustful::header::Expires [] [src]

pub struct Expires(pub HttpDate);

Expires header, defined in RFC7234

The Expires header field gives the date/time after which the response is considered stale.

The presence of an Expires field does not imply that the original resource will change or cease to exist at, before, or after that time.

ABNF

Expires = HTTP-date

Example values

Example

// extern crate time;
 
use hyper::header::{Headers, Expires, HttpDate};
use time::{self, Duration};
 
let mut headers = Headers::new();
headers.set(Expires(HttpDate(time::now() + Duration::days(1))));

Trait Implementations

impl Clone for Expires
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Expires
[src]

Formats the value using the given formatter. Read more

impl DerefMut for Expires
[src]

Mutably dereferences the value.

impl HeaderFormat for Expires
[src]

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

impl Header for Expires
[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<Expires> for Expires
[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 Expires
[src]

Formats the value using the given formatter. Read more

impl Deref for Expires
[src]

The resulting type after dereferencing.

Dereferences the value.

Auto Trait Implementations

impl Send for Expires

impl Sync for Expires