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