#[non_exhaustive]pub enum AppAccessTokenError<RE: Error + Send + Sync + 'static> {
Request(RE),
RequestParseError(RequestParseError),
}
Available on crate feature
client
only.Expand description
General errors for talking with twitch, used in AppAccessToken::get_app_access_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.
Request(RE)
request for token failed
RequestParseError(RequestParseError)
could not parse response when getting app access token
Trait Implementations§
Source§impl<RE> Error for AppAccessTokenError<RE>
impl<RE> Error for AppAccessTokenError<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 AppAccessTokenError<RE>
impl<RE: Error + Send + Sync + 'static> From<RequestParseError> for AppAccessTokenError<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 AppAccessTokenError<RE>where
RE: Freeze,
impl<RE> !RefUnwindSafe for AppAccessTokenError<RE>
impl<RE> Send for AppAccessTokenError<RE>
impl<RE> Sync for AppAccessTokenError<RE>
impl<RE> Unpin for AppAccessTokenError<RE>where
RE: Unpin,
impl<RE> !UnwindSafe for AppAccessTokenError<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