pub enum FlowHandleCallbackError {
ParseRedirectUriQueryError(ParseRedirectUriQueryError),
AuthorizationFailed(A_RES_ErrorQuery),
StateMismatch,
StateMissing,
AccessTokenEndpointRespondFailed(Box<dyn Error + Send + Sync>),
AccessTokenEndpointError(AccessTokenEndpointError),
AccessTokenFailed(AT_RES_ErrorBody),
}
Variants§
ParseRedirectUriQueryError(ParseRedirectUriQueryError)
AuthorizationFailed(A_RES_ErrorQuery)
StateMismatch
StateMissing
AccessTokenEndpointRespondFailed(Box<dyn Error + Send + Sync>)
AccessTokenEndpointError(AccessTokenEndpointError)
AccessTokenFailed(AT_RES_ErrorBody)
Trait Implementations§
source§impl Debug for FlowHandleCallbackError
impl Debug for FlowHandleCallbackError
source§impl Display for FlowHandleCallbackError
impl Display for FlowHandleCallbackError
source§impl Error for FlowHandleCallbackError
impl Error for FlowHandleCallbackError
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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()