pub struct LastModified(pub 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
// extern crate time;
use hyper::header::{Headers, LastModified, HttpDate};
use time::{self, Duration};
let mut headers = Headers::new();
headers.set(LastModified(HttpDate(time::now() - Duration::days(1))));
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 Deref for LastModified
impl Deref for LastModified
source§impl DerefMut for LastModified
impl DerefMut for LastModified
source§impl Display for LastModified
impl Display for LastModified
§impl From<LastModified> for Header<'static>
impl From<LastModified> for Header<'static>
§fn from(header: LastModified) -> Header<'static>
fn from(header: LastModified) -> Header<'static>
Converts to this type from the input type.
source§impl Header for LastModified
impl Header for LastModified
source§fn header_name() -> &'static str
fn header_name() -> &'static str
Returns the name of the header field this belongs to. Read more
source§fn parse_header(raw: &[Vec<u8>]) -> Result<LastModified, Error>
fn parse_header(raw: &[Vec<u8>]) -> Result<LastModified, Error>
Parse a header from a raw stream of bytes. Read more
source§impl HeaderFormat for LastModified
impl HeaderFormat for LastModified
source§impl PartialEq for LastModified
impl PartialEq 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§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
)