#[non_exhaustive]pub enum RefreshTokenError<RE: Error + Send + Sync + 'static> {
RequestError(RE),
RequestParseError(RequestParseError),
NoClientSecretFound,
NoRefreshToken,
NoExpiration,
}
Available on crate feature
client
only.Expand description
Errors for TwitchToken::refresh_token
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
RequestError(RE)
request when refreshing token failed
RequestParseError(RequestParseError)
could not parse response when refreshing token.
NoClientSecretFound
no client secret found
NoRefreshToken
no refresh token found
NoExpiration
no expiration found on new token
Trait Implementations§
Source§impl<RE> Error for RefreshTokenError<RE>
impl<RE> Error for RefreshTokenError<RE>
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<RE: Error + Send + Sync + 'static> From<RequestParseError> for RefreshTokenError<RE>
impl<RE: Error + Send + Sync + 'static> From<RequestParseError> for RefreshTokenError<RE>
Source§fn from(source: RequestParseError) -> Self
fn from(source: RequestParseError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl<RE> Freeze for RefreshTokenError<RE>where
RE: Freeze,
impl<RE> !RefUnwindSafe for RefreshTokenError<RE>
impl<RE> Send for RefreshTokenError<RE>
impl<RE> Sync for RefreshTokenError<RE>
impl<RE> Unpin for RefreshTokenError<RE>where
RE: Unpin,
impl<RE> !UnwindSafe for RefreshTokenError<RE>
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