pub struct IfModifiedSince { /* private fields */ }
Expand description
Apply the HTTP method if the entity has been modified after the given date.
§Specifications
§Examples
use http_types::Response;
use http_types::conditional::IfModifiedSince;
use std::time::{SystemTime, Duration};
let time = SystemTime::now() + Duration::from_secs(5 * 60);
let expires = IfModifiedSince::new(time);
let mut res = Response::new(200);
expires.apply(&mut res);
let expires = IfModifiedSince::from_headers(res)?.unwrap();
// HTTP dates only have second-precision.
let elapsed = time.duration_since(expires.modified())?;
assert_eq!(elapsed.as_secs(), 0);
Implementations§
Source§impl IfModifiedSince
impl IfModifiedSince
Sourcepub fn new(instant: SystemTime) -> Self
pub fn new(instant: SystemTime) -> Self
Create a new instance of IfModifiedSince
.
Sourcepub fn modified(&self) -> SystemTime
pub fn modified(&self) -> SystemTime
Returns the last modification time listed.
Sourcepub fn from_headers(headers: impl AsRef<Headers>) -> Result<Option<Self>>
pub fn from_headers(headers: impl AsRef<Headers>) -> Result<Option<Self>>
Create an instance of IfModifiedSince
from a Headers
instance.
Sourcepub fn apply(&self, headers: impl AsMut<Headers>)
pub fn apply(&self, headers: impl AsMut<Headers>)
Insert a HeaderName
+ HeaderValue
pair into a Headers
instance.
Sourcepub fn name(&self) -> HeaderName
pub fn name(&self) -> HeaderName
Get the HeaderName
.
Sourcepub fn value(&self) -> HeaderValue
pub fn value(&self) -> HeaderValue
Get the HeaderValue
.
Trait Implementations§
Source§impl Debug for IfModifiedSince
impl Debug for IfModifiedSince
Source§impl Ord for IfModifiedSince
impl Ord for IfModifiedSince
Source§fn cmp(&self, other: &IfModifiedSince) -> Ordering
fn cmp(&self, other: &IfModifiedSince) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for IfModifiedSince
impl PartialEq for IfModifiedSince
Source§impl PartialOrd for IfModifiedSince
impl PartialOrd for IfModifiedSince
Source§impl ToHeaderValues for IfModifiedSince
impl ToHeaderValues for IfModifiedSince
Source§type Iter = IntoIter<HeaderValue>
type Iter = IntoIter<HeaderValue>
Returned iterator over header values which this type may correspond to.
Source§fn to_header_values(&self) -> Result<Self::Iter>
fn to_header_values(&self) -> Result<Self::Iter>
Converts this object to an iterator of resolved
HeaderValues
.impl Eq for IfModifiedSince
impl StructuralPartialEq for IfModifiedSince
Auto Trait Implementations§
impl Freeze for IfModifiedSince
impl RefUnwindSafe for IfModifiedSince
impl Send for IfModifiedSince
impl Sync for IfModifiedSince
impl Unpin for IfModifiedSince
impl UnwindSafe for IfModifiedSince
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more