Struct spa_server::re_export::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 std::time::SystemTime;
use actix_http::Response;
use actix_http::http::header::Date;

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

Implementations

impl Date

pub fn now() -> Date

Create a date instance set to the current system time

Trait Implementations

impl Clone for Date

impl Debug for Date

impl Deref for Date

type Target = HttpDate

The resulting type after dereferencing.

impl DerefMut for Date

impl Display for Date

impl Header for Date

impl IntoHeaderValue for Date

type Error = InvalidHeaderValue

The type returned in the event of a conversion error.

impl PartialEq<Date> for Date

impl StructuralPartialEq for Date

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> IntoHeaderPair for T where
    T: Header

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>,