pub enum OAuthError {
AuthCodeBadUri {
uri: String,
e: ParseError,
},
AuthCodeNotFound {
uri: String,
},
AuthCodeStdinRead,
AuthCodeListenerBind {
addr: SocketAddr,
e: Error,
},
AuthCodeListenerTerminated,
AuthCodeListenerRead,
AuthCodeListenerParse,
AuthCodeListenerWrite,
InvalidSpotifyUri,
InvalidRedirectUri {
uri: String,
e: ParseError,
},
Recv,
ExchangeCode {
e: String,
},
}
Variants§
AuthCodeBadUri
AuthCodeNotFound
AuthCodeStdinRead
AuthCodeListenerBind
AuthCodeListenerTerminated
AuthCodeListenerRead
AuthCodeListenerParse
AuthCodeListenerWrite
InvalidSpotifyUri
InvalidRedirectUri
Recv
ExchangeCode
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
1.30.0 · 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()
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