Struct reqwest::header::Date
[−]
[src]
pub struct Date(pub HttpDate);
Date
header, defined in RFC7231
The Date
header field represents the date and time at which the
message was originated.
ABNF
Date = HTTP-date
Example values
Tue, 15 Nov 1994 08:12:31 GMT
Example
// extern crate time; use hyper::header::{Headers, Date, HttpDate}; use time; let mut headers = Headers::new(); headers.set(Date(HttpDate(time::now())));
Trait Implementations
impl Display for Date
[src]
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>
[src]
Formats the value using the given formatter. Read more
impl PartialEq<Date> for Date
[src]
fn eq(&self, __arg_0: &Date) -> bool
[src]
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &Date) -> bool
[src]
This method tests for !=
.
impl Deref for Date
[src]
type Target = HttpDate
The resulting type after dereferencing.
fn deref(&self) -> &HttpDate
[src]
Dereferences the value.
impl DerefMut for Date
[src]
impl Debug for Date
[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result<(), Error>
[src]
Formats the value using the given formatter. Read more
impl Clone for Date
[src]
fn clone(&self) -> Date
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl HeaderFormat for Date
[src]
fn fmt_header(&self, f: &mut Formatter) -> Result<(), Error>
[src]
Format a header to be output into a TcpStream. Read more