[−][src]Struct rocket_http::hyper::header::IfModifiedSince
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-Unmodified-Since = HTTP-date
Example values
Sat, 29 Oct 1994 19:43:31 GMT
Example
// extern crate time; use hyper::header::{Headers, IfModifiedSince, HttpDate}; use time::{self, Duration}; let mut headers = Headers::new(); headers.set(IfModifiedSince(HttpDate(time::now() - Duration::days(1))));
Trait Implementations
impl PartialEq<IfModifiedSince> for IfModifiedSince
[src]
impl PartialEq<IfModifiedSince> for IfModifiedSince
fn eq(&self, other: &IfModifiedSince) -> bool
[src]
fn eq(&self, other: &IfModifiedSince) -> bool
fn ne(&self, other: &IfModifiedSince) -> bool
[src]
fn ne(&self, other: &IfModifiedSince) -> bool
impl Display for IfModifiedSince
[src]
impl Display for IfModifiedSince
impl Debug for IfModifiedSince
[src]
impl Debug for IfModifiedSince
impl DerefMut for IfModifiedSince
[src]
impl DerefMut for IfModifiedSince
impl Clone for IfModifiedSince
[src]
impl Clone for IfModifiedSince
fn clone(&self) -> IfModifiedSince
[src]
fn clone(&self) -> IfModifiedSince
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
1.0.0
[src]Performs copy-assignment from source
. Read more
impl HeaderFormat for IfModifiedSince
[src]
impl HeaderFormat for IfModifiedSince
impl Deref for IfModifiedSince
[src]
impl Deref for IfModifiedSince
impl Header for IfModifiedSince
[src]
impl Header for IfModifiedSince
fn header_name() -> &'static str
[src]
fn header_name() -> &'static str
fn parse_header(raw: &[Vec<u8>]) -> Result<IfModifiedSince, Error>
[src]
fn parse_header(raw: &[Vec<u8>]) -> Result<IfModifiedSince, Error>
impl From<IfModifiedSince> for Header<'static>
[src]
impl From<IfModifiedSince> for Header<'static>
fn from(header: IfModifiedSince) -> Header<'static>
[src]
fn from(header: IfModifiedSince) -> Header<'static>
Auto Trait Implementations
impl Send for IfModifiedSince
impl Send for IfModifiedSince
impl Sync for IfModifiedSince
impl Sync for IfModifiedSince
Blanket Implementations
impl<T> IntoCollection for T
[src]
impl<T> IntoCollection for T
ⓘImportant traits for SmallVec<A>fn into_collection<A>(Self) -> SmallVec<A> where
A: Array<Item = T>,
[src]
ⓘImportant traits for SmallVec<A>
fn into_collection<A>(Self) -> SmallVec<A> where
A: Array<Item = T>,
ⓘImportant traits for SmallVec<A>fn mapped<U, F, A>(Self, F) -> SmallVec<A> where
A: Array<Item = U>,
F: FnMut(T) -> U,
[src]
ⓘImportant traits for SmallVec<A>
fn mapped<U, F, A>(Self, F) -> SmallVec<A> where
A: Array<Item = U>,
F: FnMut(T) -> U,
impl<T> From for T
[src]
impl<T> From for T
impl<T, U> Into for T where
U: From<T>,
[src]
impl<T, U> Into for T where
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
impl<T> ToOwned for T where
T: Clone,
impl<T> ToString for T where
T: Display + ?Sized,
[src]
impl<T> ToString for T where
T: Display + ?Sized,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
impl<T, U> TryFrom for T where
T: From<U>,
type Error = !
🔬 This is a nightly-only experimental API. (
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
impl<T> Borrow for T where
T: ?Sized,
[src]
impl<T> Borrow for T where
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
impl<T> BorrowMut for T where
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
fn borrow_mut(&mut self) -> &mut T
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
🔬 This is a nightly-only experimental API. (
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
impl<T> Any for T where
T: 'static + ?Sized,
[src]
impl<T> Any for T where
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
fn get_type_id(&self) -> TypeId
impl<T, I> AsResult for T where
I: Input,
[src]
impl<T, I> AsResult for T where
I: Input,
impl<T> HeaderClone for T where
T: Sealed,
[src]
impl<T> HeaderClone for T where
T: Sealed,
impl<T> Typeable for T where
T: Any,
[src]
impl<T> Typeable for T where
T: Any,