[][src]Enum hyper::header::RetryAfter

pub enum RetryAfter {
    Delay(Duration),
    DateTime(HttpDate),
}

The Retry-After header.

The Retry-After response-header field can be used with a 503 (Service Unavailable) response to indicate how long the service is expected to be unavailable to the requesting client. This field MAY also be used with any 3xx (Redirection) response to indicate the minimum time the user-agent is asked wait before issuing the redirected request. The value of this field can be either an HTTP-date or an integer number of seconds (in decimal) after the time of the response.

Examples

use std::time::Duration;
use hyper::header::{Headers, RetryAfter};

let mut headers = Headers::new();
headers.set(
    RetryAfter::Delay(Duration::from_secs(300))
);
use std::time::{SystemTime, Duration};
use hyper::header::{Headers, RetryAfter};

let mut headers = Headers::new();
let date = SystemTime::now() + Duration::from_secs(300);
headers.set(
    RetryAfter::DateTime(date.into())
);

Retry-After header, defined in RFC7231

Variants

Delay(Duration)

Retry after this duration has elapsed

This can be coupled with a response time header to produce a DateTime.

DateTime(HttpDate)

Retry after the given DateTime

Trait Implementations

impl Clone for RetryAfter[src]

impl Copy for RetryAfter[src]

impl Debug for RetryAfter[src]

impl Display for RetryAfter[src]

impl Eq for RetryAfter[src]

impl Header for RetryAfter[src]

impl PartialEq<RetryAfter> for RetryAfter[src]

impl StructuralEq for RetryAfter[src]

impl StructuralPartialEq for RetryAfter[src]

Auto Trait Implementations

impl RefUnwindSafe for RetryAfter

impl Send for RetryAfter

impl Sync for RetryAfter

impl Unpin for RetryAfter

impl UnwindSafe for RetryAfter

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