pub enum RevocationErrorResponseType {
UnsupportedTokenType,
Basic(BasicErrorResponseType),
}
Expand description
OAuth 2.0 Token Revocation error response types.
These error types are defined in Section 2.2.1 of RFC 7009 and Section 5.2 of RFC 6749
Variants§
UnsupportedTokenType
The authorization server does not support the revocation of the presented token type.
Basic(BasicErrorResponseType)
The authorization server responded with some other error as defined RFC 6749 error.
Trait Implementations§
Source§impl AsRef<str> for RevocationErrorResponseType
impl AsRef<str> for RevocationErrorResponseType
Source§impl Clone for RevocationErrorResponseType
impl Clone for RevocationErrorResponseType
Source§fn clone(&self) -> RevocationErrorResponseType
fn clone(&self) -> RevocationErrorResponseType
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for RevocationErrorResponseType
impl Debug for RevocationErrorResponseType
Source§impl<'de> Deserialize<'de> for RevocationErrorResponseType
impl<'de> Deserialize<'de> for RevocationErrorResponseType
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
impl ErrorResponseType for RevocationErrorResponseType
impl StructuralPartialEq for RevocationErrorResponseType
Auto Trait Implementations§
impl Freeze for RevocationErrorResponseType
impl RefUnwindSafe for RevocationErrorResponseType
impl Send for RevocationErrorResponseType
impl Sync for RevocationErrorResponseType
impl Unpin for RevocationErrorResponseType
impl UnwindSafe for RevocationErrorResponseType
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