Struct headers::RetryAfter
source · pub struct RetryAfter(/* private fields */);
Expand description
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§
source§impl RetryAfter
impl RetryAfter
sourcepub fn date(time: SystemTime) -> RetryAfter
pub fn date(time: SystemTime) -> RetryAfter
Create an RetryAfter
header with a date value.
sourcepub fn delay(dur: Duration) -> RetryAfter
pub fn delay(dur: Duration) -> RetryAfter
Create an RetryAfter
header with a date value.
Trait Implementations§
source§impl Clone for RetryAfter
impl Clone for RetryAfter
source§fn clone(&self) -> RetryAfter
fn clone(&self) -> RetryAfter
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for RetryAfter
impl Debug for RetryAfter
source§impl Header for RetryAfter
impl Header for RetryAfter
source§impl PartialEq for RetryAfter
impl PartialEq for RetryAfter
impl Eq for RetryAfter
impl StructuralPartialEq for RetryAfter
Auto Trait Implementations§
impl Freeze for RetryAfter
impl RefUnwindSafe for RetryAfter
impl Send for RetryAfter
impl Sync for RetryAfter
impl Unpin for RetryAfter
impl UnwindSafe for RetryAfter
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)