Struct hyper::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 Clone for Date
[src]
impl Clone for Date
fn clone(&self) -> Date
[src]
fn clone(&self) -> Date
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
1.0.0
[src]Performs copy-assignment from source
. Read more
impl Debug for Date
[src]
impl Debug for Date
fn fmt(&self, f: &mut Formatter) -> Result
[src]
fn fmt(&self, f: &mut Formatter) -> Result
Formats the value using the given formatter. Read more
impl PartialEq for Date
[src]
impl PartialEq for Date
fn eq(&self, other: &Date) -> bool
[src]
fn eq(&self, other: &Date) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, other: &Date) -> bool
[src]
fn ne(&self, other: &Date) -> bool
This method tests for !=
.
impl Deref for Date
[src]
impl Deref for Date
type Target = HttpDate
The resulting type after dereferencing.
fn deref(&self) -> &HttpDate
[src]
fn deref(&self) -> &HttpDate
Dereferences the value.
impl DerefMut for Date
[src]
impl DerefMut for Date
impl Header for Date
[src]
impl Header for Date
fn header_name() -> &'static str
[src]
fn header_name() -> &'static str
Returns the name of the header field this belongs to. Read more
fn parse_header(raw: &[Vec<u8>]) -> Result<Self>
[src]
fn parse_header(raw: &[Vec<u8>]) -> Result<Self>
Parse a header from a raw stream of bytes. Read more
impl HeaderFormat for Date
[src]
impl HeaderFormat for Date
fn fmt_header(&self, f: &mut Formatter) -> Result
[src]
fn fmt_header(&self, f: &mut Formatter) -> Result
Format a header to be output into a TcpStream. Read more
impl Display for Date
[src]
impl Display for Date