pub struct FarcasterV2InitResponse {
pub expires_at: String,
pub nonce: String,
}Expand description
Response for initiating a Farcaster V2 connection.
JSON schema
{
"title": "FarcasterV2InitResponse",
"description": "Response for initiating a Farcaster V2 connection.",
"type": "object",
"required": [
"expires_at",
"nonce"
],
"properties": {
"expires_at": {
"type": "string"
},
"nonce": {
"type": "string"
}
},
"x-stainless-model": "client_auth.farcaster_v_2_init_response"
}Fields§
§expires_at: String§nonce: StringTrait Implementations§
Source§impl Clone for FarcasterV2InitResponse
impl Clone for FarcasterV2InitResponse
Source§fn clone(&self) -> FarcasterV2InitResponse
fn clone(&self) -> FarcasterV2InitResponse
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 Debug for FarcasterV2InitResponse
impl Debug for FarcasterV2InitResponse
Source§impl<'de> Deserialize<'de> for FarcasterV2InitResponse
impl<'de> Deserialize<'de> for FarcasterV2InitResponse
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<&FarcasterV2InitResponse> for FarcasterV2InitResponse
impl From<&FarcasterV2InitResponse> for FarcasterV2InitResponse
Source§fn from(value: &FarcasterV2InitResponse) -> Self
fn from(value: &FarcasterV2InitResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for FarcasterV2InitResponse
impl RefUnwindSafe for FarcasterV2InitResponse
impl Send for FarcasterV2InitResponse
impl Sync for FarcasterV2InitResponse
impl Unpin for FarcasterV2InitResponse
impl UnsafeUnpin for FarcasterV2InitResponse
impl UnwindSafe for FarcasterV2InitResponse
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