pub struct SocialProfile {
pub platform: String,
pub username: String,
pub url: String,
pub found_on: Option<String>,
}Available on crate feature
contact-spy only.Fields§
§platform: String§username: String§url: String§found_on: Option<String>Trait Implementations§
Source§impl Clone for SocialProfile
impl Clone for SocialProfile
Source§fn clone(&self) -> SocialProfile
fn clone(&self) -> SocialProfile
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 SocialProfile
impl Debug for SocialProfile
Source§impl<'de> Deserialize<'de> for SocialProfile
impl<'de> Deserialize<'de> for SocialProfile
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 SocialProfile
impl RefUnwindSafe for SocialProfile
impl Send for SocialProfile
impl Sync for SocialProfile
impl Unpin for SocialProfile
impl UnsafeUnpin for SocialProfile
impl UnwindSafe for SocialProfile
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