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

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 PartialEq<LastModified> for LastModified

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

This method tests for !=.

impl Debug for LastModified

Formats the value using the given formatter.

impl Clone for LastModified

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Deref for LastModified

The resulting type after dereferencing

The method called to dereference a value

impl DerefMut for LastModified

impl Header for LastModified

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

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

impl HeaderFormat for LastModified

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

impl Display for LastModified

Formats the value using the given formatter.