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