[−][src]Struct headers::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
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][+]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> From<T> for T
[src][+]
impl<T, U> Into<U> for T where
U: From<T>,
[src][+]
U: From<T>,
impl<T> Same<T> for T
[src]
type Output = T
Should always be Self
impl<T> ToOwned for T where
T: Clone,
[src][+]
T: Clone,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src][+]
U: Into<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src][+]
U: TryFrom<T>,