Struct headers::RetryAfter[][src]

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

Implementations

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 Clone for RetryAfter[src]

impl Debug 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

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