pub struct LinkedAccountFarcasterInput {
pub bio: Option<LinkedAccountFarcasterInputBio>,
pub display_name: Option<LinkedAccountFarcasterInputDisplayName>,
pub fid: i64,
pub homepage_url: Option<LinkedAccountFarcasterInputHomepageUrl>,
pub owner_address: String,
pub profile_picture_url: Option<LinkedAccountFarcasterInputProfilePictureUrl>,
pub type_: LinkedAccountFarcasterInputType,
pub username: Option<LinkedAccountFarcasterInputUsername>,
}Expand description
LinkedAccountFarcasterInput
JSON schema
{
"title": "Farcaster",
"type": "object",
"required": [
"fid",
"owner_address",
"type"
],
"properties": {
"bio": {
"type": "string",
"maxLength": 256
},
"display_name": {
"type": "string",
"maxLength": 32
},
"fid": {
"type": "integer"
},
"homepage_url": {
"type": "string",
"maxLength": 256
},
"owner_address": {
"type": "string"
},
"profile_picture_url": {
"type": "string",
"maxLength": 256
},
"type": {
"type": "string",
"enum": [
"farcaster"
]
},
"username": {
"type": "string",
"maxLength": 256
}
}
}Fields§
§bio: Option<LinkedAccountFarcasterInputBio>§display_name: Option<LinkedAccountFarcasterInputDisplayName>§fid: i64§homepage_url: Option<LinkedAccountFarcasterInputHomepageUrl>§owner_address: String§profile_picture_url: Option<LinkedAccountFarcasterInputProfilePictureUrl>§type_: LinkedAccountFarcasterInputType§username: Option<LinkedAccountFarcasterInputUsername>Trait Implementations§
Source§impl Clone for LinkedAccountFarcasterInput
impl Clone for LinkedAccountFarcasterInput
Source§fn clone(&self) -> LinkedAccountFarcasterInput
fn clone(&self) -> LinkedAccountFarcasterInput
Returns a duplicate of the value. Read more
1.0.0 · 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 LinkedAccountFarcasterInput
impl Debug for LinkedAccountFarcasterInput
Source§impl<'de> Deserialize<'de> for LinkedAccountFarcasterInput
impl<'de> Deserialize<'de> for LinkedAccountFarcasterInput
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<&LinkedAccountFarcasterInput> for LinkedAccountFarcasterInput
impl From<&LinkedAccountFarcasterInput> for LinkedAccountFarcasterInput
Source§fn from(value: &LinkedAccountFarcasterInput) -> Self
fn from(value: &LinkedAccountFarcasterInput) -> Self
Converts to this type from the input type.
Source§impl From<LinkedAccountFarcasterInput> for LinkedAccountInput
impl From<LinkedAccountFarcasterInput> for LinkedAccountInput
Source§fn from(value: LinkedAccountFarcasterInput) -> Self
fn from(value: LinkedAccountFarcasterInput) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for LinkedAccountFarcasterInput
impl RefUnwindSafe for LinkedAccountFarcasterInput
impl Send for LinkedAccountFarcasterInput
impl Sync for LinkedAccountFarcasterInput
impl Unpin for LinkedAccountFarcasterInput
impl UnwindSafe for LinkedAccountFarcasterInput
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