pub struct FarcasterSignerStatusPendingApproval {
pub public_key: String,
pub status: FarcasterSignerStatusPendingApprovalStatus,
}Expand description
A Farcaster signer status response when the signer is pending approval.
JSON schema
{
"title": "FarcasterSignerStatusPendingApproval",
"description": "A Farcaster signer status response when the signer is
pending approval.",
"type": "object",
"required": [
"public_key",
"status"
],
"properties": {
"public_key": {
"type": "string"
},
"status": {
"type": "string",
"enum": [
"pending_approval"
]
}
},
"x-stainless-model":
"client_auth.farcaster_signer_status_pending_approval"
}Fields§
§public_key: String§status: FarcasterSignerStatusPendingApprovalStatusTrait Implementations§
Source§impl Clone for FarcasterSignerStatusPendingApproval
impl Clone for FarcasterSignerStatusPendingApproval
Source§fn clone(&self) -> FarcasterSignerStatusPendingApproval
fn clone(&self) -> FarcasterSignerStatusPendingApproval
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<'de> Deserialize<'de> for FarcasterSignerStatusPendingApproval
impl<'de> Deserialize<'de> for FarcasterSignerStatusPendingApproval
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 From<&FarcasterSignerStatusPendingApproval> for FarcasterSignerStatusPendingApproval
impl From<&FarcasterSignerStatusPendingApproval> for FarcasterSignerStatusPendingApproval
Source§fn from(value: &FarcasterSignerStatusPendingApproval) -> Self
fn from(value: &FarcasterSignerStatusPendingApproval) -> Self
Converts to this type from the input type.
Source§impl From<FarcasterSignerStatusPendingApproval> for FarcasterSignerStatusResponseBody
impl From<FarcasterSignerStatusPendingApproval> for FarcasterSignerStatusResponseBody
Source§fn from(value: FarcasterSignerStatusPendingApproval) -> Self
fn from(value: FarcasterSignerStatusPendingApproval) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for FarcasterSignerStatusPendingApproval
impl RefUnwindSafe for FarcasterSignerStatusPendingApproval
impl Send for FarcasterSignerStatusPendingApproval
impl Sync for FarcasterSignerStatusPendingApproval
impl Unpin for FarcasterSignerStatusPendingApproval
impl UnsafeUnpin for FarcasterSignerStatusPendingApproval
impl UnwindSafe for FarcasterSignerStatusPendingApproval
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