pub struct FarcasterLinkInput {
pub channel_token: String,
pub fid: f64,
pub message: String,
pub signature: String,
}Expand description
Input for linking a Farcaster account.
JSON schema
{
"title": "FarcasterLinkInput",
"description": "Input for linking a Farcaster account.",
"type": "object",
"required": [
"channel_token",
"fid",
"message",
"signature"
],
"properties": {
"channel_token": {
"type": "string"
},
"fid": {
"type": "number"
},
"message": {
"type": "string"
},
"signature": {
"type": "string"
}
},
"x-stainless-model": "client_auth.farcaster_link_input"
}Fields§
§channel_token: String§fid: f64§message: String§signature: StringTrait Implementations§
Source§impl Clone for FarcasterLinkInput
impl Clone for FarcasterLinkInput
Source§fn clone(&self) -> FarcasterLinkInput
fn clone(&self) -> FarcasterLinkInput
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 FarcasterLinkInput
impl Debug for FarcasterLinkInput
Source§impl<'de> Deserialize<'de> for FarcasterLinkInput
impl<'de> Deserialize<'de> for FarcasterLinkInput
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<&FarcasterLinkInput> for FarcasterLinkInput
impl From<&FarcasterLinkInput> for FarcasterLinkInput
Source§fn from(value: &FarcasterLinkInput) -> Self
fn from(value: &FarcasterLinkInput) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for FarcasterLinkInput
impl RefUnwindSafe for FarcasterLinkInput
impl Send for FarcasterLinkInput
impl Sync for FarcasterLinkInput
impl Unpin for FarcasterLinkInput
impl UnsafeUnpin for FarcasterLinkInput
impl UnwindSafe for FarcasterLinkInput
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