Struct reqwest::header::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 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 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 HeaderFormat for LastModified

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

impl DerefMut for LastModified

impl PartialEq<LastModified> for LastModified

impl Display for LastModified

Formats the value using the given formatter.

impl Deref for LastModified