2018-03-07 00:18:04 +01:00
|
|
|
use std::time::SystemTime;
|
2018-03-06 09:43:25 +01:00
|
|
|
use header::{http, HttpDate};
|
|
|
|
|
2018-03-07 00:18:04 +01:00
|
|
|
|
2018-03-06 09:43:25 +01:00
|
|
|
header! {
|
|
|
|
/// `Date` header, defined in [RFC7231](http://tools.ietf.org/html/rfc7231#section-7.1.1.2)
|
|
|
|
///
|
|
|
|
/// The `Date` header field represents the date and time at which the
|
|
|
|
/// message was originated.
|
|
|
|
///
|
|
|
|
/// # ABNF
|
|
|
|
///
|
|
|
|
/// ```text
|
|
|
|
/// Date = HTTP-date
|
|
|
|
/// ```
|
|
|
|
///
|
|
|
|
/// # Example values
|
|
|
|
///
|
|
|
|
/// * `Tue, 15 Nov 1994 08:12:31 GMT`
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// use actix_web::httpcodes;
|
|
|
|
/// use actix_web::header::Date;
|
|
|
|
/// use std::time::SystemTime;
|
|
|
|
///
|
|
|
|
/// let mut builder = httpcodes::HttpOk.build();
|
|
|
|
/// builder.set(Date(SystemTime::now().into()));
|
|
|
|
/// ```
|
|
|
|
(Date, http::DATE) => [HttpDate]
|
|
|
|
|
|
|
|
test_date {
|
|
|
|
test_header!(test1, vec![b"Tue, 15 Nov 1994 08:12:31 GMT"]);
|
|
|
|
}
|
|
|
|
}
|
2018-03-07 00:18:04 +01:00
|
|
|
|
|
|
|
impl Date {
|
|
|
|
pub fn now() -> Date {
|
|
|
|
Date(SystemTime::now().into())
|
|
|
|
}
|
|
|
|
}
|