pub enum OAuthError {
InvalidSigningKey(Error),
Http(Error),
Other(GoogleError),
InvalidScope,
}Expand description
An error occured while authenticating using OAuth.
Variants§
InvalidSigningKey(Error)
The service private key was invalid and could not be used for signing.
Http(Error)
A network error occurred.
Other(GoogleError)
The GCP API returned some error that’s not commonly encountered while using this library.
InvalidScope
(Only) An invalid scope was requested, leading to the OAuth API returning an identity token rather than an access token.
Trait Implementations§
Source§impl Debug for OAuthError
impl Debug for OAuthError
Source§impl Display for OAuthError
impl Display for OAuthError
Source§impl Error for OAuthError
impl Error for OAuthError
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 From<Error> for OAuthError
impl From<Error> for OAuthError
Source§impl From<Error> for OAuthError
impl From<Error> for OAuthError
Source§impl From<GoogleError> for OAuthError
impl From<GoogleError> for OAuthError
Source§fn from(source: GoogleError) -> Self
fn from(source: GoogleError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for OAuthError
impl !RefUnwindSafe for OAuthError
impl Send for OAuthError
impl Sync for OAuthError
impl Unpin for OAuthError
impl !UnwindSafe for OAuthError
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