[−][src]Struct http_types::conditional::LastModified
The last modification date of a resource.
Specifications
Examples
use http_types::Response; use http_types::conditional::LastModified; use std::time::{SystemTime, Duration}; let time = SystemTime::now() + Duration::from_secs(5 * 60); let last_modified = LastModified::new(time); let mut res = Response::new(200); last_modified.apply(&mut res); let last_modified = LastModified::from_headers(res)?.unwrap(); // HTTP dates only have second-precision. let elapsed = time.duration_since(last_modified.modified())?; assert_eq!(elapsed.as_secs(), 0);
Implementations
impl LastModified[src]
pub fn new(instant: SystemTime) -> Self[src]
Create a new instance of LastModified.
pub fn modified(&self) -> SystemTime[src]
Returns the last modification time listed.
pub fn from_headers(headers: impl AsRef<Headers>) -> Result<Option<Self>>[src]
Create an instance of LastModified from a Headers instance.
pub fn apply(&self, headers: impl AsMut<Headers>)[src]
Insert a HeaderName + HeaderValue pair into a Headers instance.
pub fn name(&self) -> HeaderName[src]
Get the HeaderName.
pub fn value(&self) -> HeaderValue[src]
Get the HeaderValue.
Trait Implementations
impl Debug for LastModified[src]
impl Eq for LastModified[src]
impl Ord for LastModified[src]
fn cmp(&self, other: &LastModified) -> Ordering[src]
#[must_use]fn max(self, other: Self) -> Self1.21.0[src]
#[must_use]fn min(self, other: Self) -> Self1.21.0[src]
#[must_use]fn clamp(self, min: Self, max: Self) -> Self[src]
impl PartialEq<LastModified> for LastModified[src]
fn eq(&self, other: &LastModified) -> bool[src]
fn ne(&self, other: &LastModified) -> bool[src]
impl PartialOrd<LastModified> for LastModified[src]
fn partial_cmp(&self, other: &LastModified) -> Option<Ordering>[src]
fn lt(&self, other: &LastModified) -> bool[src]
fn le(&self, other: &LastModified) -> bool[src]
fn gt(&self, other: &LastModified) -> bool[src]
fn ge(&self, other: &LastModified) -> bool[src]
impl StructuralEq for LastModified[src]
impl StructuralPartialEq for LastModified[src]
impl ToHeaderValues for LastModified[src]
type Iter = IntoIter<HeaderValue>
Returned iterator over header values which this type may correspond to.
fn to_header_values(&self) -> Result<Self::Iter>[src]
Auto Trait Implementations
impl RefUnwindSafe for LastModified
impl Send for LastModified
impl Sync for LastModified
impl Unpin for LastModified
impl UnwindSafe for LastModified
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> Same<T> for T
type Output = T
Should always be Self
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,