Enum matrix_sdk_base::ruma::api::client::error::RetryAfter
source · pub enum RetryAfter {
Delay(Duration),
DateTime(SystemTime),
}
Available on crate feature
api
and (crate features client
or server
) only.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§fn try_from(
value: &HeaderValue,
) -> Result<RetryAfter, <RetryAfter as TryFrom<&HeaderValue>>::Error>
fn try_from( value: &HeaderValue, ) -> Result<RetryAfter, <RetryAfter as TryFrom<&HeaderValue>>::Error>
Performs the conversion.
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.
source§fn try_from(
value: &RetryAfter,
) -> Result<HeaderValue, <HeaderValue as TryFrom<&RetryAfter>>::Error>
fn try_from( value: &RetryAfter, ) -> Result<HeaderValue, <HeaderValue as TryFrom<&RetryAfter>>::Error>
Performs the conversion.
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
)§impl<T> CompatExt for T
impl<T> CompatExt for T
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.source§impl<T, UT> HandleAlloc<UT> for T
impl<T, UT> HandleAlloc<UT> for T
source§fn consume_handle(handle: Handle) -> Arc<T>
fn consume_handle(handle: Handle) -> Arc<T>
Consume a handle, getting back the initial
Arc<>
source§impl<T, W> HasTypeWitness<W> for Twhere
W: MakeTypeWitness<Arg = T>,
T: ?Sized,
impl<T, W> HasTypeWitness<W> for Twhere
W: MakeTypeWitness<Arg = T>,
T: ?Sized,
source§impl<T> Identity for Twhere
T: ?Sized,
impl<T> Identity for Twhere
T: ?Sized,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more