pub enum OAuth2ErrorTypeResponse {
InvalidRequest,
InvalidClient,
InvalidGrant,
UnauthorizedClient,
UnsupportedGrantType,
InvalidScope,
AuthorizationPending,
SlowDown,
AccessDenied,
ExpiredToken,
}Available on crate feature
device-code only.Variants§
InvalidRequest
InvalidClient
InvalidGrant
UnsupportedGrantType
InvalidScope
AuthorizationPending
SlowDown
AccessDenied
ExpiredToken
Trait Implementations§
Source§impl Debug for OAuth2ErrorTypeResponse
impl Debug for OAuth2ErrorTypeResponse
Source§impl<'de> Deserialize<'de> for OAuth2ErrorTypeResponse
impl<'de> Deserialize<'de> for OAuth2ErrorTypeResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for OAuth2ErrorTypeResponse
impl RefUnwindSafe for OAuth2ErrorTypeResponse
impl Send for OAuth2ErrorTypeResponse
impl Sync for OAuth2ErrorTypeResponse
impl Unpin for OAuth2ErrorTypeResponse
impl UnsafeUnpin for OAuth2ErrorTypeResponse
impl UnwindSafe for OAuth2ErrorTypeResponse
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