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()