pub struct PersonGroup {
pub profile_pic_url: Option<Option<String>>,
pub name: Option<Option<String>>,
pub url: Option<Option<String>>,
}Fields§
§profile_pic_url: Option<Option<String>>The URL to the profile picture of this LinkedIn Group
name: Option<Option<String>>Name of LinkedIn group for which this user is in
url: Option<Option<String>>URL to the LinkedIn Group
Implementations§
Source§impl PersonGroup
impl PersonGroup
pub fn new() -> PersonGroup
Trait Implementations§
Source§impl Clone for PersonGroup
impl Clone for PersonGroup
Source§fn clone(&self) -> PersonGroup
fn clone(&self) -> PersonGroup
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 PersonGroup
impl Debug for PersonGroup
Source§impl Default for PersonGroup
impl Default for PersonGroup
Source§fn default() -> PersonGroup
fn default() -> PersonGroup
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PersonGroup
impl<'de> Deserialize<'de> for PersonGroup
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
Source§impl PartialEq for PersonGroup
impl PartialEq for PersonGroup
Source§impl Serialize for PersonGroup
impl Serialize for PersonGroup
impl StructuralPartialEq for PersonGroup
Auto Trait Implementations§
impl Freeze for PersonGroup
impl RefUnwindSafe for PersonGroup
impl Send for PersonGroup
impl Sync for PersonGroup
impl Unpin for PersonGroup
impl UnwindSafe for PersonGroup
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