pub enum AuthorizationError {
Pkce(CodeChallengeError),
UrlEncoded(Error),
PushedAuthorization(PushedAuthorizationError),
}Expand description
All possible errors when authorizing the client.
Variants§
Pkce(CodeChallengeError)
An error occurred constructing the PKCE code challenge.
UrlEncoded(Error)
An error occurred serializing the request.
PushedAuthorization(PushedAuthorizationError)
An error occurred making the PAR request.
Trait Implementations§
Source§impl Debug for AuthorizationError
impl Debug for AuthorizationError
Source§impl Display for AuthorizationError
impl Display for AuthorizationError
Source§impl Error for AuthorizationError
impl Error for AuthorizationError
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<AuthorizationError> for Error
impl From<AuthorizationError> for Error
Source§fn from(source: AuthorizationError) -> Self
fn from(source: AuthorizationError) -> Self
Converts to this type from the input type.
Source§impl From<CodeChallengeError> for AuthorizationError
impl From<CodeChallengeError> for AuthorizationError
Source§fn from(source: CodeChallengeError) -> Self
fn from(source: CodeChallengeError) -> Self
Converts to this type from the input type.
Source§impl From<Error> for AuthorizationError
impl From<Error> for AuthorizationError
Source§impl From<PushedAuthorizationError> for AuthorizationError
impl From<PushedAuthorizationError> for AuthorizationError
Source§fn from(source: PushedAuthorizationError) -> Self
fn from(source: PushedAuthorizationError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl !RefUnwindSafe for AuthorizationError
impl !UnwindSafe for AuthorizationError
impl Freeze for AuthorizationError
impl Send for AuthorizationError
impl Sync for AuthorizationError
impl Unpin for AuthorizationError
impl UnsafeUnpin for AuthorizationError
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