Struct rocket::http::hyper::header::Expires [−][src]
pub struct Expires(pub HttpDate);
Expand description
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
// extern crate time;
use hyper::header::{Headers, Expires, HttpDate};
use time::{self, Duration};
let mut headers = Headers::new();
headers.set(Expires(HttpDate(time::now() + Duration::days(1))));
Tuple Fields
0: HttpDate
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Expires
impl UnwindSafe for Expires
Blanket Implementations
Mutably borrows from an owned value. Read more