pub struct LinkedAccountFarcaster {Show 13 fields
pub bio: Option<String>,
pub display_name: Option<String>,
pub fid: f64,
pub first_verified_at: Option<f64>,
pub homepage_url: Option<String>,
pub latest_verified_at: Option<f64>,
pub owner_address: String,
pub profile_picture: Option<String>,
pub profile_picture_url: Option<String>,
pub signer_public_key: Option<String>,
pub type_: LinkedAccountFarcasterType,
pub username: Option<String>,
pub verified_at: f64,
}Expand description
LinkedAccountFarcaster
JSON schema
{
"title": "Farcaster",
"type": "object",
"required": [
"fid",
"first_verified_at",
"latest_verified_at",
"owner_address",
"type",
"verified_at"
],
"properties": {
"bio": {
"type": "string"
},
"display_name": {
"type": "string"
},
"fid": {
"type": "number"
},
"first_verified_at": {
"type": [
"number",
"null"
]
},
"homepage_url": {
"type": "string"
},
"latest_verified_at": {
"type": [
"number",
"null"
]
},
"owner_address": {
"type": "string"
},
"profile_picture": {
"type": "string"
},
"profile_picture_url": {
"type": "string"
},
"signer_public_key": {
"type": "string"
},
"type": {
"type": "string",
"enum": [
"farcaster"
]
},
"username": {
"type": "string"
},
"verified_at": {
"type": "number"
}
}
}Fields§
§bio: Option<String>§display_name: Option<String>§fid: f64§first_verified_at: Option<f64>§homepage_url: Option<String>§latest_verified_at: Option<f64>§owner_address: String§profile_picture: Option<String>§profile_picture_url: Option<String>§signer_public_key: Option<String>§type_: LinkedAccountFarcasterType§username: Option<String>§verified_at: f64Trait Implementations§
Source§impl Clone for LinkedAccountFarcaster
impl Clone for LinkedAccountFarcaster
Source§fn clone(&self) -> LinkedAccountFarcaster
fn clone(&self) -> LinkedAccountFarcaster
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 LinkedAccountFarcaster
impl Debug for LinkedAccountFarcaster
Source§impl<'de> Deserialize<'de> for LinkedAccountFarcaster
impl<'de> Deserialize<'de> for LinkedAccountFarcaster
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<LinkedAccountFarcaster, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<LinkedAccountFarcaster, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<&LinkedAccountFarcaster> for LinkedAccountFarcaster
impl From<&LinkedAccountFarcaster> for LinkedAccountFarcaster
Source§fn from(value: &LinkedAccountFarcaster) -> LinkedAccountFarcaster
fn from(value: &LinkedAccountFarcaster) -> LinkedAccountFarcaster
Converts to this type from the input type.
Source§impl From<LinkedAccountFarcaster> for LinkedAccount
impl From<LinkedAccountFarcaster> for LinkedAccount
Source§fn from(value: LinkedAccountFarcaster) -> LinkedAccount
fn from(value: LinkedAccountFarcaster) -> LinkedAccount
Converts to this type from the input type.
Source§impl Serialize for LinkedAccountFarcaster
impl Serialize for LinkedAccountFarcaster
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for LinkedAccountFarcaster
impl RefUnwindSafe for LinkedAccountFarcaster
impl Send for LinkedAccountFarcaster
impl Sync for LinkedAccountFarcaster
impl Unpin for LinkedAccountFarcaster
impl UnwindSafe for LinkedAccountFarcaster
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