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