pub struct PersonSocial {
pub linkedin_username: Option<String>,
pub linkedin_connections: Option<i32>,
pub linkedin: Option<String>,
pub twitter: Option<String>,
pub facebook: Option<String>,
pub github: Option<String>,
}
Expand description
Person social media information
Fields§
§linkedin_username: Option<String>
§linkedin_connections: Option<i32>
§linkedin: Option<String>
§twitter: Option<String>
§facebook: Option<String>
§github: Option<String>
Trait Implementations§
Source§impl Clone for PersonSocial
impl Clone for PersonSocial
Source§fn clone(&self) -> PersonSocial
fn clone(&self) -> PersonSocial
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 PersonSocial
impl Debug for PersonSocial
Source§impl<'de> Deserialize<'de> for PersonSocial
impl<'de> Deserialize<'de> for PersonSocial
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 PersonSocial
impl RefUnwindSafe for PersonSocial
impl Send for PersonSocial
impl Sync for PersonSocial
impl Unpin for PersonSocial
impl UnwindSafe for PersonSocial
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