Struct trillium_http_types::conditional::IfUnmodifiedSince [−][src]
pub struct IfUnmodifiedSince { /* fields omitted */ }Expand description
Apply the HTTP method if the entity has not been modified after the given date.
Specifications
Examples
use http_types::Response; use http_types::conditional::IfUnmodifiedSince; use std::time::{SystemTime, Duration}; let time = SystemTime::now() + Duration::from_secs(5 * 60); let expires = IfUnmodifiedSince::new(time); let mut res = Response::new(200); res.insert_header(&expires, &expires); let expires = IfUnmodifiedSince::from_headers(res)?.unwrap(); // HTTP dates only have second-precision. let elapsed = time.duration_since(expires.modified())?; assert_eq!(elapsed.as_secs(), 0);
Implementations
Create a new instance of IfUnmodifiedSince.
Returns the last modification time listed.
Trait Implementations
Access the header’s name.
Access the header’s value.
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
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 IfUnmodifiedSinceimpl Send for IfUnmodifiedSinceimpl Sync for IfUnmodifiedSinceimpl Unpin for IfUnmodifiedSinceimpl UnwindSafe for IfUnmodifiedSince