pub struct FarcasterConnectStatusPendingResponse {
pub nonce: String,
pub state: FarcasterConnectStatusPendingResponseState,
}Expand description
Proxy for the Farcaster Connect pending status response as defined in FIP-11.
JSON schema
{
"title": "FarcasterConnectStatusPendingResponse",
"description": "Proxy for the Farcaster Connect pending status response
as defined in FIP-11.",
"type": "object",
"required": [
"nonce",
"state"
],
"properties": {
"nonce": {
"type": "string"
},
"state": {
"type": "string",
"enum": [
"pending"
]
}
},
"x-stainless-model":
"client_auth.farcaster_connect_status_pending_response"
}Fields§
§nonce: String§state: FarcasterConnectStatusPendingResponseStateTrait Implementations§
Source§impl Clone for FarcasterConnectStatusPendingResponse
impl Clone for FarcasterConnectStatusPendingResponse
Source§fn clone(&self) -> FarcasterConnectStatusPendingResponse
fn clone(&self) -> FarcasterConnectStatusPendingResponse
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 FarcasterConnectStatusPendingResponse
impl<'de> Deserialize<'de> for FarcasterConnectStatusPendingResponse
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<&FarcasterConnectStatusPendingResponse> for FarcasterConnectStatusPendingResponse
impl From<&FarcasterConnectStatusPendingResponse> for FarcasterConnectStatusPendingResponse
Source§fn from(value: &FarcasterConnectStatusPendingResponse) -> Self
fn from(value: &FarcasterConnectStatusPendingResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for FarcasterConnectStatusPendingResponse
impl RefUnwindSafe for FarcasterConnectStatusPendingResponse
impl Send for FarcasterConnectStatusPendingResponse
impl Sync for FarcasterConnectStatusPendingResponse
impl Unpin for FarcasterConnectStatusPendingResponse
impl UnsafeUnpin for FarcasterConnectStatusPendingResponse
impl UnwindSafe for FarcasterConnectStatusPendingResponse
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