[−][src]Enum reqwest::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]
impl Clone for RetryAfter
fn clone(&self) -> RetryAfter
[src]
fn clone(&self) -> RetryAfter
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
impl Debug for RetryAfter
[src]
impl Debug for RetryAfter
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>
[src]
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>
Formats the value using the given formatter. Read more
impl Copy for RetryAfter
[src]
impl Copy for RetryAfter
impl Display for RetryAfter
[src]
impl Display for RetryAfter
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>
[src]
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>
Formats the value using the given formatter. Read more
impl Eq for RetryAfter
[src]
impl Eq for RetryAfter
impl PartialEq<RetryAfter> for RetryAfter
[src]
impl PartialEq<RetryAfter> for RetryAfter
fn eq(&self, other: &RetryAfter) -> bool
[src]
fn eq(&self, other: &RetryAfter) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, other: &RetryAfter) -> bool
[src]
fn ne(&self, other: &RetryAfter) -> bool
This method tests for !=
.
impl Header for RetryAfter
[src]
impl Header for RetryAfter
fn header_name() -> &'static str
[src]
fn header_name() -> &'static str
Returns the name of the header field this belongs to. Read more
fn parse_header(raw: &Raw) -> Result<RetryAfter, Error>
[src]
fn parse_header(raw: &Raw) -> Result<RetryAfter, Error>
Parse a header from a raw stream of bytes. Read more
fn fmt_header(&self, f: &mut Formatter) -> Result<(), Error>
[src]
fn fmt_header(&self, f: &mut Formatter) -> Result<(), Error>
Format a header to outgoing stream. Read more
Auto Trait Implementations
impl Send for RetryAfter
impl Send for RetryAfter
impl Sync for RetryAfter
impl Sync for RetryAfter
Blanket Implementations
impl<T> ToOwned for T where
T: Clone,
[src]
impl<T> ToOwned for T where
T: Clone,
type Owned = T
fn to_owned(&self) -> T
[src]
fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
fn clone_into(&self, target: &mut T)
[src]
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (toowned_clone_into
)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
impl<T> From for T
[src]
impl<T> From for T
impl<T> ToString for T where
T: Display + ?Sized,
[src]
impl<T> ToString for T where
T: Display + ?Sized,
impl<T, U> Into for T where
U: From<T>,
[src]
impl<T, U> Into for T where
U: From<T>,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
impl<T, U> TryFrom for T where
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
try_from
)Performs the conversion.
impl<T> Borrow for T where
T: ?Sized,
[src]
impl<T> Borrow for T where
T: ?Sized,
ⓘImportant traits for &'a mut Wfn borrow(&self) -> &T
[src]
fn borrow(&self) -> &T
Immutably borrows from an owned value. Read more
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
try_from
)Performs the conversion.
impl<T> BorrowMut for T where
T: ?Sized,
[src]
impl<T> BorrowMut for T where
T: ?Sized,
ⓘImportant traits for &'a mut Wfn borrow_mut(&mut self) -> &mut T
[src]
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<T> Any for T where
T: 'static + ?Sized,
[src]
impl<T> Any for T where
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
fn get_type_id(&self) -> TypeId
🔬 This is a nightly-only experimental API. (get_type_id
)
this method will likely be replaced by an associated static
Gets the TypeId
of self
. Read more