pub enum RefreshError {
NoRefreshToken,
FetchError(Error),
ValidationError(JWTError),
}Expand description
Errors that may occur while refreshing the access token.
Variants§
NoRefreshToken
No refresh token to do the refresh with.
FetchError(Error)
Failed to fetch new token.
ValidationError(JWTError)
Error occurred while validating 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)>
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
Auto Trait Implementations§
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