pub struct HttpDate(/* private fields */);
Expand description
A timestamp with HTTP-style formatting and parsing.
Trait Implementations§
source§impl From<SystemTime> for HttpDate
impl From<SystemTime> for HttpDate
source§fn from(sys_time: SystemTime) -> HttpDate
fn from(sys_time: SystemTime) -> HttpDate
Converts to this type from the input type.
source§impl Ord for HttpDate
impl Ord for HttpDate
source§impl PartialEq for HttpDate
impl PartialEq for HttpDate
source§impl PartialOrd for HttpDate
impl PartialOrd for HttpDate
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 moresource§impl TryIntoHeaderValue for HttpDate
impl TryIntoHeaderValue for HttpDate
§type Error = InvalidHeaderValue
type Error = InvalidHeaderValue
The type returned in the event of a conversion error.
source§fn try_into_value(
self,
) -> Result<HeaderValue, <HttpDate as TryIntoHeaderValue>::Error>
fn try_into_value( self, ) -> Result<HeaderValue, <HttpDate as TryIntoHeaderValue>::Error>
Try to convert value to a HeaderValue.
impl Copy for HttpDate
impl Eq for HttpDate
impl StructuralPartialEq for HttpDate
Auto Trait Implementations§
impl Freeze for HttpDate
impl RefUnwindSafe for HttpDate
impl Send for HttpDate
impl Sync for HttpDate
impl Unpin for HttpDate
impl UnwindSafe for HttpDate
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: 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
)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<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.