[][src]Struct headers::RetryAfter

pub struct RetryAfter(_);

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, SystemTime};
use headers::RetryAfter;

let delay = RetryAfter::delay(Duration::from_secs(300));
let date = RetryAfter::date(SystemTime::now());

Retry-After header, defined in RFC7231

Methods

impl RetryAfter[src]

pub fn date(time: SystemTime) -> RetryAfter[src]

Create an RetryAfter header with a date value.

pub fn delay(dur: Duration) -> RetryAfter[src]

Create an RetryAfter header with a date value.

Trait Implementations

impl Eq for RetryAfter[src]

impl Clone for RetryAfter[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq<RetryAfter> for RetryAfter[src]

impl Debug for RetryAfter[src]

impl Header for RetryAfter[src]

Auto Trait Implementations

impl Send for RetryAfter

impl Sync for RetryAfter

Blanket Implementations

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

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

type Owned = T

impl<T> From for T[src]

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

impl<T> Same for T

type Output = T

Should always be Self