pub enum RefreshError {
InvalidURI(InvalidUri),
HyperError(Error),
HyperUtilError(Error),
InvalidMetadata(Error),
RequestFailed(StatusCode),
HttpError(Error),
AuthorizationFailure,
InvalidTokenResponse(Error),
NoIdTokenReceived,
}
Available on crate features
client
and oidc
only.Expand description
Possible errors when using the refresh token.
Variants§
InvalidURI(InvalidUri)
Failed to parse the provided issuer URL.
HyperError(Error)
hyper::Error
occurred during refreshing.
HyperUtilError(Error)
hyper_util::client::legacy::Error
occurred during refreshing.
InvalidMetadata(Error)
Failed to parse the metadata received from the provider.
RequestFailed(StatusCode)
Received an invalid status code from the provider.
HttpError(Error)
http::Error
occurred during refreshing.
AuthorizationFailure
Failed to authorize with the provider.
InvalidTokenResponse(Error)
Failed to parse the token response from the provider.
NoIdTokenReceived
Token response from the provider did not contain an ID token.
Trait Implementations§
source§impl Debug for RefreshError
impl Debug for RefreshError
source§impl Display for RefreshError
impl Display for RefreshError
source§impl Error for RefreshError
impl Error for RefreshError
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<Error> for RefreshError
impl From<Error> for RefreshError
source§impl From<Error> for RefreshError
impl From<Error> for RefreshError
source§impl From<Error> for RefreshError
impl From<Error> for RefreshError
source§impl From<InvalidUri> for RefreshError
impl From<InvalidUri> for RefreshError
source§fn from(source: InvalidUri) -> Self
fn from(source: InvalidUri) -> Self
Converts to this type from the input type.
source§impl From<RefreshError> for Error
impl From<RefreshError> for Error
source§fn from(source: RefreshError) -> Self
fn from(source: RefreshError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for RefreshError
impl !RefUnwindSafe for RefreshError
impl Send for RefreshError
impl Sync for RefreshError
impl Unpin for RefreshError
impl !UnwindSafe for RefreshError
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> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§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