Struct headers::common::if_modified_since::IfModifiedSince
source · pub struct IfModifiedSince(HttpDate);
Expand description
If-Modified-Since
header, defined in
RFC7232
The If-Modified-Since
header field makes a GET or HEAD request
method conditional on the selected representation’s modification date
being more recent than the date provided in the field-value.
Transfer of the selected representation’s data is avoided if that
data has not changed.
§ABNF
If-Modified-Since = HTTP-date
§Example values
Sat, 29 Oct 1994 19:43:31 GMT
§Example
use headers::IfModifiedSince;
use std::time::{Duration, SystemTime};
let time = SystemTime::now() - Duration::from_secs(60 * 60 * 24);
let if_mod = IfModifiedSince::from(time);
Tuple Fields§
§0: HttpDate
Implementations§
source§impl IfModifiedSince
impl IfModifiedSince
sourcepub fn is_modified(&self, last_modified: SystemTime) -> bool
pub fn is_modified(&self, last_modified: SystemTime) -> bool
Check if the supplied time means the resource has been modified.
Trait Implementations§
source§impl Clone for IfModifiedSince
impl Clone for IfModifiedSince
source§fn clone(&self) -> IfModifiedSince
fn clone(&self) -> IfModifiedSince
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for IfModifiedSince
impl Debug for IfModifiedSince
source§impl From<IfModifiedSince> for SystemTime
impl From<IfModifiedSince> for SystemTime
source§fn from(date: IfModifiedSince) -> SystemTime
fn from(date: IfModifiedSince) -> SystemTime
Converts to this type from the input type.
source§impl From<SystemTime> for IfModifiedSince
impl From<SystemTime> for IfModifiedSince
source§fn from(time: SystemTime) -> IfModifiedSince
fn from(time: SystemTime) -> IfModifiedSince
Converts to this type from the input type.
source§impl Hash for IfModifiedSince
impl Hash for IfModifiedSince
source§impl Header for IfModifiedSince
impl Header 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§fn eq(&self, other: &IfModifiedSince) -> bool
fn eq(&self, other: &IfModifiedSince) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for IfModifiedSince
impl PartialOrd for IfModifiedSince
source§fn partial_cmp(&self, other: &IfModifiedSince) -> Option<Ordering>
fn partial_cmp(&self, other: &IfModifiedSince) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Copy for IfModifiedSince
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