pub struct HttpDate { /* private fields */ }
Expand description
HTTP timestamp type.
Parse using FromStr
impl.
Format using the Display
trait.
Convert timestamp into/from SytemTime
to use.
Supports comparsion and sorting.
Trait Implementations§
source§impl From<HttpDate> for SystemTime
impl From<HttpDate> for SystemTime
source§fn from(v: HttpDate) -> SystemTime
fn from(v: HttpDate) -> SystemTime
Converts to this type from the input type.
source§impl From<SystemTime> for HttpDate
impl From<SystemTime> for HttpDate
source§fn from(v: SystemTime) -> HttpDate
fn from(v: SystemTime) -> HttpDate
Converts to this type from the input type.
source§impl Ord for HttpDate
impl Ord for HttpDate
source§impl PartialEq<HttpDate> for HttpDate
impl PartialEq<HttpDate> for HttpDate
source§impl PartialOrd<HttpDate> for HttpDate
impl PartialOrd<HttpDate> 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 more