pub struct ProfileView {Show 21 fields
pub certification_view: CertificationView,
pub course_view: CourseView,
pub education_view: EducationView,
pub entity_urn: Option<String>,
pub honor_view: HonorView,
pub language_view: LanguageView,
pub organization_view: OrganizationView,
pub patent_view: PatentView,
pub position_group_view: PositionGroupView,
pub position_view: PositionView,
pub primary_locale: Locale,
pub profile: Profile,
pub project_view: ProjectView,
pub publication_view: PublicationView,
pub skill_view: SkillView,
pub summary_treasury_media_count: u32,
pub summary_treasury_medias: Vec<Value>,
pub test_score_view: TestScoreView,
pub volunteer_cause_view: VolunteerCauseView,
pub volunteer_experience_view: VolunteerExperienceView,
pub skills: Vec<Skill>,
}Expand description
The complete LinkedIn profile view structure
Fields§
§certification_view: CertificationView§course_view: CourseView§education_view: EducationView§entity_urn: Option<String>§honor_view: HonorView§language_view: LanguageView§organization_view: OrganizationView§patent_view: PatentView§position_group_view: PositionGroupView§position_view: PositionView§primary_locale: Locale§profile: Profile§project_view: ProjectView§publication_view: PublicationView§skill_view: SkillView§summary_treasury_media_count: u32§summary_treasury_medias: Vec<Value>§test_score_view: TestScoreView§volunteer_cause_view: VolunteerCauseView§volunteer_experience_view: VolunteerExperienceView§skills: Vec<Skill>Trait Implementations§
Source§impl Clone for ProfileView
impl Clone for ProfileView
Source§fn clone(&self) -> ProfileView
fn clone(&self) -> ProfileView
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 ProfileView
impl Debug for ProfileView
Source§impl<'de> Deserialize<'de> for ProfileView
impl<'de> Deserialize<'de> for ProfileView
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 ProfileView
impl RefUnwindSafe for ProfileView
impl Send for ProfileView
impl Sync for ProfileView
impl Unpin for ProfileView
impl UnwindSafe for ProfileView
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more