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