pub enum OAuthTokenRefreshTokenRequestBodyGrantType {
RefreshToken,
}Expand description
OAuthTokenRefreshTokenRequestBodyGrantType
JSON schema
{
"type": "string",
"enum": [
"refresh_token"
]
}Variants§
RefreshToken
Trait Implementations§
Source§impl Clone for OAuthTokenRefreshTokenRequestBodyGrantType
impl Clone for OAuthTokenRefreshTokenRequestBodyGrantType
Source§fn clone(&self) -> OAuthTokenRefreshTokenRequestBodyGrantType
fn clone(&self) -> OAuthTokenRefreshTokenRequestBodyGrantType
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for OAuthTokenRefreshTokenRequestBodyGrantType
Source§impl<'de> Deserialize<'de> for OAuthTokenRefreshTokenRequestBodyGrantType
impl<'de> Deserialize<'de> for OAuthTokenRefreshTokenRequestBodyGrantType
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 Eq for OAuthTokenRefreshTokenRequestBodyGrantType
Source§impl From<&OAuthTokenRefreshTokenRequestBodyGrantType> for OAuthTokenRefreshTokenRequestBodyGrantType
impl From<&OAuthTokenRefreshTokenRequestBodyGrantType> for OAuthTokenRefreshTokenRequestBodyGrantType
Source§fn from(value: &OAuthTokenRefreshTokenRequestBodyGrantType) -> Self
fn from(value: &OAuthTokenRefreshTokenRequestBodyGrantType) -> Self
Converts to this type from the input type.
Source§impl Ord for OAuthTokenRefreshTokenRequestBodyGrantType
impl Ord for OAuthTokenRefreshTokenRequestBodyGrantType
Source§fn cmp(&self, other: &OAuthTokenRefreshTokenRequestBodyGrantType) -> Ordering
fn cmp(&self, other: &OAuthTokenRefreshTokenRequestBodyGrantType) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for OAuthTokenRefreshTokenRequestBodyGrantType
impl PartialEq for OAuthTokenRefreshTokenRequestBodyGrantType
Source§fn eq(&self, other: &OAuthTokenRefreshTokenRequestBodyGrantType) -> bool
fn eq(&self, other: &OAuthTokenRefreshTokenRequestBodyGrantType) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for OAuthTokenRefreshTokenRequestBodyGrantType
impl PartialOrd for OAuthTokenRefreshTokenRequestBodyGrantType
Source§fn partial_cmp(
&self,
other: &OAuthTokenRefreshTokenRequestBodyGrantType,
) -> Option<Ordering>
fn partial_cmp( &self, other: &OAuthTokenRefreshTokenRequestBodyGrantType, ) -> Option<Ordering>
impl StructuralPartialEq for OAuthTokenRefreshTokenRequestBodyGrantType
Source§impl TryFrom<&String> for OAuthTokenRefreshTokenRequestBodyGrantType
impl TryFrom<&String> for OAuthTokenRefreshTokenRequestBodyGrantType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for OAuthTokenRefreshTokenRequestBodyGrantType
impl TryFrom<&str> for OAuthTokenRefreshTokenRequestBodyGrantType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for OAuthTokenRefreshTokenRequestBodyGrantType
impl TryFrom<String> for OAuthTokenRefreshTokenRequestBodyGrantType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Auto Trait Implementations§
impl Freeze for OAuthTokenRefreshTokenRequestBodyGrantType
impl RefUnwindSafe for OAuthTokenRefreshTokenRequestBodyGrantType
impl Send for OAuthTokenRefreshTokenRequestBodyGrantType
impl Sync for OAuthTokenRefreshTokenRequestBodyGrantType
impl Unpin for OAuthTokenRefreshTokenRequestBodyGrantType
impl UnsafeUnpin for OAuthTokenRefreshTokenRequestBodyGrantType
impl UnwindSafe for OAuthTokenRefreshTokenRequestBodyGrantType
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