[][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()));

Methods

impl Date[src]

pub fn now() -> Date[src]

Create a date instance set to the current system time

Trait Implementations

impl Debug for Date[src]

impl StructuralPartialEq for Date[src]

impl Clone for Date[src]

impl IntoHeaderValue for Date[src]

type Error = InvalidHeaderValue

The type returned in the event of a conversion error.

impl Display for Date[src]

impl Header for Date[src]

impl PartialEq<Date> for Date[src]

impl DerefMut for Date[src]

impl Deref for Date[src]

type Target = HttpDate

The resulting type after dereferencing.

Auto Trait Implementations

impl Send for Date

impl Sync for Date

impl Unpin for Date

impl UnwindSafe for Date

impl RefUnwindSafe for Date

Blanket Implementations

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

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

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 = !

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<T> Borrow<T> for T where
    T: ?Sized
[src]

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

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

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