Struct headers::LastModified
source · pub struct LastModified(pub(super) HttpDate);
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)
);
Tuple Fields§
§0: HttpDate
Trait Implementations§
source§impl Clone for LastModified
impl Clone for LastModified
source§fn clone(&self) -> LastModified
fn clone(&self) -> LastModified
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 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§impl Ord for LastModified
impl Ord for LastModified
source§fn cmp(&self, other: &LastModified) -> Ordering
fn cmp(&self, other: &LastModified) -> 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 LastModified
impl PartialEq for LastModified
source§fn eq(&self, other: &LastModified) -> bool
fn eq(&self, other: &LastModified) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for LastModified
impl PartialOrd for LastModified
source§fn partial_cmp(&self, other: &LastModified) -> Option<Ordering>
fn partial_cmp(&self, other: &LastModified) -> 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 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 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