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