pub enum OAuthTokenDeviceCodeRequestBodyGrantType {
UrnIetfParamsOauthGrantTypeDeviceCode,
}Expand description
OAuthTokenDeviceCodeRequestBodyGrantType
JSON schema
{
"type": "string",
"enum": [
"urn:ietf:params:oauth:grant-type:device_code"
]
}Variants§
UrnIetfParamsOauthGrantTypeDeviceCode
Trait Implementations§
Source§impl Clone for OAuthTokenDeviceCodeRequestBodyGrantType
impl Clone for OAuthTokenDeviceCodeRequestBodyGrantType
Source§fn clone(&self) -> OAuthTokenDeviceCodeRequestBodyGrantType
fn clone(&self) -> OAuthTokenDeviceCodeRequestBodyGrantType
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 OAuthTokenDeviceCodeRequestBodyGrantType
Source§impl<'de> Deserialize<'de> for OAuthTokenDeviceCodeRequestBodyGrantType
impl<'de> Deserialize<'de> for OAuthTokenDeviceCodeRequestBodyGrantType
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 OAuthTokenDeviceCodeRequestBodyGrantType
Source§impl From<&OAuthTokenDeviceCodeRequestBodyGrantType> for OAuthTokenDeviceCodeRequestBodyGrantType
impl From<&OAuthTokenDeviceCodeRequestBodyGrantType> for OAuthTokenDeviceCodeRequestBodyGrantType
Source§fn from(value: &OAuthTokenDeviceCodeRequestBodyGrantType) -> Self
fn from(value: &OAuthTokenDeviceCodeRequestBodyGrantType) -> Self
Converts to this type from the input type.
Source§impl Ord for OAuthTokenDeviceCodeRequestBodyGrantType
impl Ord for OAuthTokenDeviceCodeRequestBodyGrantType
Source§fn cmp(&self, other: &OAuthTokenDeviceCodeRequestBodyGrantType) -> Ordering
fn cmp(&self, other: &OAuthTokenDeviceCodeRequestBodyGrantType) -> 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 OAuthTokenDeviceCodeRequestBodyGrantType
impl PartialEq for OAuthTokenDeviceCodeRequestBodyGrantType
Source§fn eq(&self, other: &OAuthTokenDeviceCodeRequestBodyGrantType) -> bool
fn eq(&self, other: &OAuthTokenDeviceCodeRequestBodyGrantType) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for OAuthTokenDeviceCodeRequestBodyGrantType
impl PartialOrd for OAuthTokenDeviceCodeRequestBodyGrantType
impl StructuralPartialEq for OAuthTokenDeviceCodeRequestBodyGrantType
Source§impl TryFrom<&String> for OAuthTokenDeviceCodeRequestBodyGrantType
impl TryFrom<&String> for OAuthTokenDeviceCodeRequestBodyGrantType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for OAuthTokenDeviceCodeRequestBodyGrantType
impl TryFrom<&str> for OAuthTokenDeviceCodeRequestBodyGrantType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for OAuthTokenDeviceCodeRequestBodyGrantType
impl TryFrom<String> for OAuthTokenDeviceCodeRequestBodyGrantType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Auto Trait Implementations§
impl Freeze for OAuthTokenDeviceCodeRequestBodyGrantType
impl RefUnwindSafe for OAuthTokenDeviceCodeRequestBodyGrantType
impl Send for OAuthTokenDeviceCodeRequestBodyGrantType
impl Sync for OAuthTokenDeviceCodeRequestBodyGrantType
impl Unpin for OAuthTokenDeviceCodeRequestBodyGrantType
impl UnsafeUnpin for OAuthTokenDeviceCodeRequestBodyGrantType
impl UnwindSafe for OAuthTokenDeviceCodeRequestBodyGrantType
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