Struct hyper::header::Expires
[−]
[src]
pub struct Expires(pub HttpDate);
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))));
Trait Implementations
impl Clone for Expires[src]
impl Clone for Expiresfn clone(&self) -> Expires[src]
fn clone(&self) -> ExpiresReturns 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 Expires[src]
impl Debug for Expiresfn fmt(&self, __arg_0: &mut Formatter) -> Result[src]
fn fmt(&self, __arg_0: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl PartialEq for Expires[src]
impl PartialEq for Expiresfn eq(&self, __arg_0: &Expires) -> bool[src]
fn eq(&self, __arg_0: &Expires) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &Expires) -> bool[src]
fn ne(&self, __arg_0: &Expires) -> boolThis method tests for !=.
impl Deref for Expires[src]
impl Deref for Expirestype Target = HttpDate
The resulting type after dereferencing.
fn deref(&self) -> &HttpDate[src]
fn deref(&self) -> &HttpDateDereferences the value.
impl DerefMut for Expires[src]
impl DerefMut for Expiresimpl Header for Expires[src]
impl Header for Expiresfn header_name() -> &'static str[src]
fn header_name() -> &'static strReturns 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 Expires[src]
impl HeaderFormat for Expiresfn fmt_header(&self, f: &mut Formatter) -> Result[src]
fn fmt_header(&self, f: &mut Formatter) -> ResultFormat a header to be output into a TcpStream. Read more
impl Display for Expires[src]
impl Display for Expires