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
sourceimpl Debug for RefreshError
impl Debug for RefreshError
sourceimpl Display for RefreshError
impl Display for RefreshError
sourceimpl Error for RefreshError
impl Error for RefreshError
sourcefn 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 · sourcefn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
sourceimpl 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
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more