pub struct LastModified(/* private fields */);Available on crate feature
fullstack only.Expand description
Last-Modified header, defined in
RFC7232
The Last-Modified header field in a response provides a timestamp
indicating the date and time at which the origin server believes the
selected representation was last modified, as determined at the
conclusion of handling the request.
§ABNF
Expires = HTTP-date§Example values
Sat, 29 Oct 1994 19:43:31 GMT
§Example
use headers::LastModified;
use std::time::{Duration, SystemTime};
let modified = LastModified::from(
SystemTime::now() - Duration::from_secs(60 * 60 * 24)
);Trait Implementations§
Source§impl Clone for LastModified
impl Clone for LastModified
Source§fn clone(&self) -> LastModified
fn clone(&self) -> LastModified
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 LastModified
impl Debug for LastModified
Source§impl From<LastModified> for SystemTime
impl From<LastModified> for SystemTime
Source§fn from(date: LastModified) -> SystemTime
fn from(date: LastModified) -> SystemTime
Converts to this type from the input type.
Source§impl From<SystemTime> for LastModified
impl From<SystemTime> for LastModified
Source§fn from(time: SystemTime) -> LastModified
fn from(time: SystemTime) -> LastModified
Converts to this type from the input type.
Source§impl Hash for LastModified
impl Hash for LastModified
Source§impl Header for LastModified
impl Header for LastModified
Source§fn name() -> &'static HeaderName
fn name() -> &'static HeaderName
The name of this header.
Source§fn decode<'i, I>(values: &mut I) -> Result<LastModified, Error>where
I: Iterator<Item = &'i HeaderValue>,
fn decode<'i, I>(values: &mut I) -> Result<LastModified, Error>where
I: Iterator<Item = &'i HeaderValue>,
Decode this type from an iterator of
HeaderValues.Source§impl Ord for LastModified
impl Ord for LastModified
Source§fn cmp(&self, other: &LastModified) -> Ordering
fn cmp(&self, other: &LastModified) -> Ordering
1.21.0 (const: unstable) · 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 LastModified
impl PartialEq for LastModified
Source§fn eq(&self, other: &LastModified) -> bool
fn eq(&self, other: &LastModified) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for LastModified
impl PartialOrd for LastModified
impl Copy for LastModified
impl Eq for LastModified
impl StructuralPartialEq for LastModified
Auto Trait Implementations§
impl Freeze for LastModified
impl RefUnwindSafe for LastModified
impl Send for LastModified
impl Sync for LastModified
impl Unpin for LastModified
impl UnsafeUnpin for LastModified
impl UnwindSafe for LastModified
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<T> InitializeFromFunction<T> for T
impl<T> InitializeFromFunction<T> for T
Source§fn initialize_from_function(f: fn() -> T) -> T
fn initialize_from_function(f: fn() -> T) -> T
Create an instance of this type from an initialization function
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<Ret> SpawnIfAsync<(), Ret> for Ret
impl<Ret> SpawnIfAsync<(), Ret> for Ret
Source§impl<T, O> SuperFrom<T> for Owhere
O: From<T>,
impl<T, O> SuperFrom<T> for Owhere
O: From<T>,
Source§fn super_from(input: T) -> O
fn super_from(input: T) -> O
Convert from a type to another type.
Source§impl<T, O, M> SuperInto<O, M> for Twhere
O: SuperFrom<T, M>,
impl<T, O, M> SuperInto<O, M> for Twhere
O: SuperFrom<T, M>,
Source§fn super_into(self) -> O
fn super_into(self) -> O
Convert from a type to another type.