1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-05-20 01:08:10 +00:00
actix-web/actix-web/src/http/header/date.rs

44 lines
1.1 KiB
Rust
Raw Normal View History

use super::{HttpDate, DATE};
2019-02-07 21:24:24 +00:00
use std::time::SystemTime;
2021-06-25 11:25:50 +00:00
crate::http::header::common_header! {
/// `Date` header, defined
/// in [RFC 7231 §7.1.1.2](https://datatracker.ietf.org/doc/html/rfc7231#section-7.1.1.2)
2019-02-07 21:24:24 +00:00
///
/// The `Date` header field represents the date and time at which the
/// message was originated.
///
/// # ABNF
2021-12-02 15:25:39 +00:00
/// ```plain
2019-02-07 21:24:24 +00:00
/// Date = HTTP-date
/// ```
///
/// # Example Values
2019-02-07 21:24:24 +00:00
/// * `Tue, 15 Nov 1994 08:12:31 GMT`
///
2022-01-21 16:56:33 +00:00
/// # Examples
2019-02-07 21:24:24 +00:00
///
2021-01-15 02:11:10 +00:00
/// ```
/// use std::time::SystemTime;
/// use actix_web::HttpResponse;
/// use actix_web::http::header::Date;
2019-02-07 21:24:24 +00:00
///
/// let mut builder = HttpResponse::Ok();
2021-01-15 02:11:10 +00:00
/// builder.insert_header(
/// Date(SystemTime::now().into())
/// );
2019-02-07 21:24:24 +00:00
/// ```
(Date, DATE) => [HttpDate]
test_parse_and_format {
2021-06-25 11:25:50 +00:00
crate::http::header::common_header_test!(test1, vec![b"Tue, 15 Nov 1994 08:12:31 GMT"]);
2019-02-07 21:24:24 +00:00
}
}
impl Date {
/// Create a date instance set to the current system time
pub fn now() -> Date {
Date(SystemTime::now().into())
}
}