[−][src]Struct headers::IfUnmodifiedSince
If-Unmodified-Since
header, defined in
RFC7232
The If-Unmodified-Since
header field makes the request method
conditional on the selected representation's last modification date
being earlier than or equal to the date provided in the field-value.
This field accomplishes the same purpose as If-Match for cases where
the user agent does not have an entity-tag for the representation.
ABNF
If-Unmodified-Since = HTTP-date
Example values
Sat, 29 Oct 1994 19:43:31 GMT
Example
use headers::IfUnmodifiedSince; use std::time::{SystemTime, Duration}; let time = SystemTime::now() - Duration::from_secs(60 * 60 * 24); let if_unmod = IfUnmodifiedSince::from(time);
Implementations
impl IfUnmodifiedSince
[src]
pub fn precondition_passes(&self, last_modified: SystemTime) -> bool
[src]
Check if the supplied time passes the precondtion.
Trait Implementations
impl Clone for IfUnmodifiedSince
[src]
fn clone(&self) -> IfUnmodifiedSince
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Copy for IfUnmodifiedSince
[src]
impl Debug for IfUnmodifiedSince
[src]
impl Eq for IfUnmodifiedSince
[src]
impl From<IfUnmodifiedSince> for SystemTime
[src]
fn from(date: IfUnmodifiedSince) -> SystemTime
[src]
impl From<SystemTime> for IfUnmodifiedSince
[src]
fn from(time: SystemTime) -> IfUnmodifiedSince
[src]
impl Hash for IfUnmodifiedSince
[src]
fn hash<__H: Hasher>(&self, state: &mut __H)
[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
H: Hasher,
impl Header for IfUnmodifiedSince
[src]
fn name() -> &'static HeaderName
[src]
fn decode<'i, I>(values: &mut I) -> Result<Self, Error> where
I: Iterator<Item = &'i HeaderValue>,
[src]
I: Iterator<Item = &'i HeaderValue>,
fn encode<E: Extend<HeaderValue>>(&self, values: &mut E)
[src]
impl Ord for IfUnmodifiedSince
[src]
fn cmp(&self, other: &IfUnmodifiedSince) -> Ordering
[src]
#[must_use]fn max(self, other: Self) -> Self
1.21.0[src]
#[must_use]fn min(self, other: Self) -> Self
1.21.0[src]
#[must_use]fn clamp(self, min: Self, max: Self) -> Self
[src]
impl PartialEq<IfUnmodifiedSince> for IfUnmodifiedSince
[src]
fn eq(&self, other: &IfUnmodifiedSince) -> bool
[src]
fn ne(&self, other: &IfUnmodifiedSince) -> bool
[src]
impl PartialOrd<IfUnmodifiedSince> for IfUnmodifiedSince
[src]
fn partial_cmp(&self, other: &IfUnmodifiedSince) -> Option<Ordering>
[src]
fn lt(&self, other: &IfUnmodifiedSince) -> bool
[src]
fn le(&self, other: &IfUnmodifiedSince) -> bool
[src]
fn gt(&self, other: &IfUnmodifiedSince) -> bool
[src]
fn ge(&self, other: &IfUnmodifiedSince) -> bool
[src]
impl StructuralEq for IfUnmodifiedSince
[src]
impl StructuralPartialEq for IfUnmodifiedSince
[src]
Auto Trait Implementations
impl RefUnwindSafe for IfUnmodifiedSince
impl Send for IfUnmodifiedSince
impl Sync for IfUnmodifiedSince
impl Unpin for IfUnmodifiedSince
impl UnwindSafe for IfUnmodifiedSince
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> Same<T> for T
[src]
type Output = T
Should always be Self
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,