Struct hyper::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

  • Thu, 01 Dec 1994 16:00:00 GMT

Example

use hyper::header::{Headers, Expires};
use std::time::{SystemTime, Duration};

let mut headers = Headers::new();
let expiration = SystemTime::now() + Duration::from_secs(60 * 60 * 24);
headers.set(Expires(expiration.into()));

Trait Implementations

impl Clone for Expires
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Expires
[src]

[src]

Formats the value using the given formatter.

impl PartialEq for Expires
[src]

[src]

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

[src]

This method tests for !=.

impl Deref for Expires
[src]

The resulting type after dereferencing.

[src]

Dereferences the value.

impl DerefMut for Expires
[src]

[src]

Mutably dereferences the value.

impl Header for Expires
[src]

[src]

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

[src]

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

[src]

Format a header to outgoing stream. Read more

impl Display for Expires
[src]

[src]

Formats the value using the given formatter. Read more