pub struct SocialAccount {
pub platform: String,
pub username: Option<String>,
}Expand description
Social account linked to the user.
Fields§
§platform: StringPlatform name (e.g. farcaster, twitter, telegram).
username: Option<String>Username on that platform.
Trait Implementations§
Source§impl Clone for SocialAccount
impl Clone for SocialAccount
Source§fn clone(&self) -> SocialAccount
fn clone(&self) -> SocialAccount
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 SocialAccount
impl Debug for SocialAccount
Source§impl<'de> Deserialize<'de> for SocialAccount
impl<'de> Deserialize<'de> for SocialAccount
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
Auto Trait Implementations§
impl Freeze for SocialAccount
impl RefUnwindSafe for SocialAccount
impl Send for SocialAccount
impl Sync for SocialAccount
impl Unpin for SocialAccount
impl UnsafeUnpin for SocialAccount
impl UnwindSafe for SocialAccount
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