pub enum ErrorBodyError {
Show 14 variants
InvalidRequest,
InvalidClient,
InvalidGrant,
UnauthorizedClient,
UnsupportedGrantType,
InvalidScope,
UnsupportedResponseType,
AuthorizationPending,
SlowDown,
ExpiredToken,
AccessDenied,
ServerError,
TemporarilyUnavailable,
Other(String),
}
Variants§
InvalidRequest
https://datatracker.ietf.org/doc/html/rfc6749#section-5.2
InvalidClient
https://datatracker.ietf.org/doc/html/rfc6749#section-5.2
InvalidGrant
https://datatracker.ietf.org/doc/html/rfc6749#section-5.2
https://datatracker.ietf.org/doc/html/rfc6749#section-5.2
UnsupportedGrantType
https://datatracker.ietf.org/doc/html/rfc6749#section-5.2
InvalidScope
https://datatracker.ietf.org/doc/html/rfc6749#section-5.2
UnsupportedResponseType
https://datatracker.ietf.org/doc/html/rfc6749#section-4.1.2.1
AuthorizationPending
https://datatracker.ietf.org/doc/html/rfc8628#section-3.5
SlowDown
https://datatracker.ietf.org/doc/html/rfc8628#section-3.5
ExpiredToken
https://datatracker.ietf.org/doc/html/rfc8628#section-3.5
AccessDenied
https://datatracker.ietf.org/doc/html/rfc6749#section-4.1.2.1 https://datatracker.ietf.org/doc/html/rfc6749#section-4.2.2.1 https://datatracker.ietf.org/doc/html/rfc8628#section-3.5
ServerError
https://datatracker.ietf.org/doc/html/rfc6749#section-4.1.2.1 https://datatracker.ietf.org/doc/html/rfc6749#section-4.2.2.1
https://datatracker.ietf.org/doc/html/rfc6749#section-4.1.2.1 https://datatracker.ietf.org/doc/html/rfc6749#section-4.2.2.1
Other(String)
Trait Implementations§
Source§impl Clone for ErrorBodyError
impl Clone for ErrorBodyError
Source§fn clone(&self) -> ErrorBodyError
fn clone(&self) -> ErrorBodyError
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more