Struct trillium_http_types::cache::Expires [−][src]
pub struct Expires { /* fields omitted */ }Expand description
HTTP Expires header
Specifications
Examples
use http_types::Response; use http_types::cache::Expires; use std::time::{SystemTime, Duration}; let time = SystemTime::now() + Duration::from_secs(5 * 60); let expires = Expires::new_at(time); let mut res = Response::new(200); res.insert_header(&expires, &expires); let expires = Expires::from_headers(res)?.unwrap(); // HTTP dates only have second-precision. let elapsed = time.duration_since(expires.expiration())?; assert_eq!(elapsed.as_secs(), 0);
Implementations
Create a new instance of Expires from secs.
Get the expiration time.
Trait Implementations
Access the header’s name.
Access the header’s value.
This method returns an ordering between self and other values if one exists. Read more
This method tests less than (for self and other) and is used by the < operator. Read more
This method tests less than or equal to (for self and other) and is used by the <=
operator. Read more
This method tests greater than (for self and other) and is used by the > operator. Read more
Auto Trait Implementations
impl RefUnwindSafe for Expiresimpl UnwindSafe for Expires