[−][src]Enum hyper::header::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; 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]
fn clone(&self) -> RetryAfter
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[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]
fn header_name() -> &'static str
[src]
fn parse_header(raw: &Raw) -> Result<RetryAfter>
[src]
fn fmt_header(&self, f: &mut Formatter) -> Result
[src]
impl PartialEq<RetryAfter> for RetryAfter
[src]
fn eq(&self, other: &RetryAfter) -> bool
[src]
fn ne(&self, other: &RetryAfter) -> bool
[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,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T> ToString for T where
T: Display + ?Sized,
[src]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,