[][src]Struct actix_web::http::header::Date

pub struct Date(pub HttpDate);

Date header, defined in RFC7231

The Date header field represents the date and time at which the message was originated.

ABNF

Date = HTTP-date

Example values

  • Tue, 15 Nov 1994 08:12:31 GMT

Example

use actix_http::Response;
use actix_http::http::header::Date;
use std::time::SystemTime;

let mut builder = Response::Ok();
builder.set(Date(SystemTime::now().into()));

Implementations

impl Date[src]

pub fn now() -> Date[src]

Create a date instance set to the current system time

Trait Implementations

impl Clone for Date[src]

impl Debug for Date[src]

impl Deref for Date[src]

type Target = HttpDate

The resulting type after dereferencing.

impl DerefMut for Date[src]

impl Display for Date[src]

impl Header for Date[src]

impl IntoHeaderValue for Date[src]

type Error = InvalidHeaderValue

The type returned in the event of a conversion error.

impl PartialEq<Date> for Date[src]

impl StructuralPartialEq for Date[src]

Auto Trait Implementations

impl RefUnwindSafe for Date

impl Send for Date

impl Sync for Date

impl Unpin for Date

impl UnwindSafe for Date

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,