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