pub struct Social {
pub github: String,
pub instagram: String,
pub reddit: String,
pub twitter: String,
pub youtube: String,
}Expand description
Social information about a user.
Fields§
§github: StringThe GitHub username of the user.
instagram: StringThe Instagram username of the user.
reddit: StringThe Reddit username of the user.
twitter: StringThe Twitter username of the user.
youtube: StringThe YouTube username of the user.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Social
impl<'de> Deserialize<'de> for Social
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 Social
impl RefUnwindSafe for Social
impl Send for Social
impl Sync for Social
impl Unpin for Social
impl UnwindSafe for Social
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