Enum ruma_client_api::error::RetryAfter
source · pub enum RetryAfter {
Delay(Duration),
DateTime(SystemTime),
}
Expand description
How long a client should wait before it tries again.
Variants§
Delay(Duration)
The client should wait for the given duration.
This variant should be preferred for backwards compatibility, as it will also populate the
retry_after_ms
field in the body of the response.
DateTime(SystemTime)
The client should wait for the given date and time.
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 PartialEq for RetryAfter
impl PartialEq for RetryAfter
source§fn eq(&self, other: &RetryAfter) -> bool
fn eq(&self, other: &RetryAfter) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl TryFrom<&HeaderValue> for RetryAfter
impl TryFrom<&HeaderValue> for RetryAfter
§type Error = HeaderDeserializationError
type Error = HeaderDeserializationError
The type returned in the event of a conversion error.
source§impl TryFrom<&RetryAfter> for HeaderValue
impl TryFrom<&RetryAfter> for HeaderValue
§type Error = HeaderSerializationError
type Error = HeaderSerializationError
The type returned in the event of a conversion error.
impl Copy 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
)source§impl<T> CloneToUninit for Twhere
T: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.