pub enum RequestTokenError<RE, T>where
RE: Error + 'static,
T: ErrorResponse + 'static,{
ServerResponse(T),
Request(RE),
Parse(Error<Error>, Vec<u8>),
Other(String),
}
Expand description
Error encountered while requesting access token.
Variants§
ServerResponse(T)
Error response returned by authorization server. Contains the parsed ErrorResponse
returned by the server.
Request(RE)
An error occurred while sending the request or receiving the response (e.g., network connectivity failed).
Parse(Error<Error>, Vec<u8>)
Failed to parse server response. Parse errors may occur while parsing either successful or error responses.
Other(String)
Some other type of error occurred (e.g., an unexpected server response).
Trait Implementations§
Source§impl<RE, T> Debug for RequestTokenError<RE, T>
impl<RE, T> Debug for RequestTokenError<RE, T>
Source§impl<RE, T> Display for RequestTokenError<RE, T>where
RE: Error + 'static,
T: ErrorResponse + 'static,
impl<RE, T> Display for RequestTokenError<RE, T>where
RE: Error + 'static,
T: ErrorResponse + 'static,
Source§impl<RE, T> Error for RequestTokenError<RE, T>
impl<RE, T> Error for RequestTokenError<RE, T>
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<RE, T> Freeze for RequestTokenError<RE, T>
impl<RE, T> !RefUnwindSafe for RequestTokenError<RE, T>
impl<RE, T> Send for RequestTokenError<RE, T>
impl<RE, T> Sync for RequestTokenError<RE, T>
impl<RE, T> Unpin for RequestTokenError<RE, T>
impl<RE, T> !UnwindSafe for RequestTokenError<RE, T>
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