Struct headers::LastModified
source · pub struct LastModified(/* private fields */);
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 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§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 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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> CloneToUninit for Twhere
T: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)