pub enum OAuthCodeType {
Raw,
}Expand description
The type of OAuth authorization code.
JSON schema
{
"title": "OAuthCodeType",
"description": "The type of OAuth authorization code.",
"type": "string",
"enum": [
"raw"
],
"x-stainless-model": "client_auth.oauth_code_type"
}Variants§
Raw
Trait Implementations§
Source§impl Clone for OAuthCodeType
impl Clone for OAuthCodeType
Source§fn clone(&self) -> OAuthCodeType
fn clone(&self) -> OAuthCodeType
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 OAuthCodeType
Source§impl Debug for OAuthCodeType
impl Debug for OAuthCodeType
Source§impl<'de> Deserialize<'de> for OAuthCodeType
impl<'de> Deserialize<'de> for OAuthCodeType
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
Source§impl Display for OAuthCodeType
impl Display for OAuthCodeType
impl Eq for OAuthCodeType
Source§impl From<&OAuthCodeType> for OAuthCodeType
impl From<&OAuthCodeType> for OAuthCodeType
Source§fn from(value: &OAuthCodeType) -> Self
fn from(value: &OAuthCodeType) -> Self
Converts to this type from the input type.
Source§impl FromStr for OAuthCodeType
impl FromStr for OAuthCodeType
Source§impl Hash for OAuthCodeType
impl Hash for OAuthCodeType
Source§impl Ord for OAuthCodeType
impl Ord for OAuthCodeType
Source§fn cmp(&self, other: &OAuthCodeType) -> Ordering
fn cmp(&self, other: &OAuthCodeType) -> 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 OAuthCodeType
impl PartialEq for OAuthCodeType
Source§fn eq(&self, other: &OAuthCodeType) -> bool
fn eq(&self, other: &OAuthCodeType) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for OAuthCodeType
impl PartialOrd for OAuthCodeType
Source§impl Serialize for OAuthCodeType
impl Serialize for OAuthCodeType
impl StructuralPartialEq for OAuthCodeType
Source§impl TryFrom<&String> for OAuthCodeType
impl TryFrom<&String> for OAuthCodeType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for OAuthCodeType
impl TryFrom<&str> for OAuthCodeType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for OAuthCodeType
impl TryFrom<String> for OAuthCodeType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Auto Trait Implementations§
impl Freeze for OAuthCodeType
impl RefUnwindSafe for OAuthCodeType
impl Send for OAuthCodeType
impl Sync for OAuthCodeType
impl Unpin for OAuthCodeType
impl UnsafeUnpin for OAuthCodeType
impl UnwindSafe for OAuthCodeType
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