Struct iron::headers::LastModified [] [src]

pub struct LastModified(pub HttpDate);

Last-Modified header, defined in RFC7232

The Last-Modified header field in a response provides a timestamp indicating the date and time at which the origin server believes the selected representation was last modified, as determined at the conclusion of handling the request.

ABNF

Expires = HTTP-date

Example values

  • Sat, 29 Oct 1994 19:43:31 GMT

Example

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

Trait Implementations

impl Display for LastModified
[src]

Formats the value using the given formatter. Read more

impl HeaderFormat for LastModified
[src]

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

impl DerefMut for LastModified
[src]

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

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

This method tests for !=.

impl Deref for LastModified
[src]

The resulting type after dereferencing

The method called to dereference a value

impl Debug for LastModified
[src]

Formats the value using the given formatter.

impl Clone for LastModified
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more