Module httpdate

Module httpdate 

Source
Expand description

Utilities to format an HTTP date

§Example

let your_time;
if let Some(date) = httpdate::from_systime(your_time) {
    res.add_header("Last-Modified", date);
}

Functions§

from_systime
Formats an HTTP date from a SystemTime
now
Returns the current time in an HTTP date
parse
Parses an HTTP date