pub enum RefreshTokenError {
RefreshTokenRequired,
MatrixAuth(Arc<HttpError>),
OAuth(Arc<OAuthError>),
}
Expand description
Errors that can happen when refreshing an access token.
This is usually only returned by Client::refresh_access_token()
, unless
handling refresh tokens is activated for the Client
.
Variants§
RefreshTokenRequired
Tried to send a refresh token request without a refresh token.
MatrixAuth(Arc<HttpError>)
An error occurred interacting with the native Matrix authentication API.
OAuth(Arc<OAuthError>)
An error occurred interacting with the OAuth 2.0 API.
Trait Implementations§
Source§impl Clone for RefreshTokenError
impl Clone for RefreshTokenError
Source§fn clone(&self) -> RefreshTokenError
fn clone(&self) -> RefreshTokenError
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 RefreshTokenError
impl Debug for RefreshTokenError
Source§impl Display for RefreshTokenError
impl Display for RefreshTokenError
Source§impl Error for RefreshTokenError
impl Error for RefreshTokenError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl From<Arc<OAuthError>> for RefreshTokenError
impl From<Arc<OAuthError>> for RefreshTokenError
Source§fn from(source: Arc<OAuthError>) -> Self
fn from(source: Arc<OAuthError>) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for RefreshTokenError
impl !RefUnwindSafe for RefreshTokenError
impl Send for RefreshTokenError
impl Sync for RefreshTokenError
impl Unpin for RefreshTokenError
impl !UnwindSafe for RefreshTokenError
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,
§impl<T> CompatExt for T
impl<T> CompatExt for T
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