pub struct LinkedinSchool {Show 22 fields
pub linkedin_internal_id: Option<Option<String>>,
pub description: Option<Option<String>>,
pub website: Option<Option<String>>,
pub industry: Option<Option<String>>,
pub company_size: Option<Vec<LinkedinCompanyCompanySizeInner>>,
pub company_size_on_linkedin: Option<Option<i32>>,
pub hq: Option<Box<CompanyLocation>>,
pub company_type: Option<CompanyType>,
pub founded_year: Option<Option<i32>>,
pub specialities: Option<Vec<String>>,
pub locations: Option<Vec<CompanyLocation>>,
pub name: Option<Option<String>>,
pub tagline: Option<Option<String>>,
pub universal_name_id: Option<Option<String>>,
pub profile_pic_url: Option<Option<String>>,
pub background_cover_image_url: Option<Option<String>>,
pub search_id: Option<Option<String>>,
pub similar_companies: Option<Vec<SimilarCompany>>,
pub affiliated_companies: Option<Vec<AffiliatedCompany>>,
pub updates: Option<Vec<CompanyUpdate>>,
pub follower_count: Option<Option<i32>>,
pub social_networking_services: Option<Vec<CompanySocialNetworkingService>>,
}
Fields§
§linkedin_internal_id: Option<Option<String>>
LinkedIn’s Internal and immutable ID of this Company profile.
description: Option<Option<String>>
§website: Option<Option<String>>
§industry: Option<Option<String>>
The industry
attribute, found in a LinkedIn Company profile, describes the industry in which the company operates. The value of this attribute is an enumerator. [This CSV file provides an exhaustive list of possible values for this attribute] (https://drive.google.com/file/d/12yvYLuru7CRv3wKOIkHs5Ldocz31gJSS/ view?usp=share_link).
company_size: Option<Vec<LinkedinCompanyCompanySizeInner>>
Sequenceed range of company head count
company_size_on_linkedin: Option<Option<i32>>
§hq: Option<Box<CompanyLocation>>
§company_type: Option<CompanyType>
§founded_year: Option<Option<i32>>
§specialities: Option<Vec<String>>
A list of specialities.
locations: Option<Vec<CompanyLocation>>
§name: Option<Option<String>>
§tagline: Option<Option<String>>
§universal_name_id: Option<Option<String>>
§profile_pic_url: Option<Option<String>>
§background_cover_image_url: Option<Option<String>>
§search_id: Option<Option<String>>
Useable with Job listing endpoint
similar_companies: Option<Vec<SimilarCompany>>
§affiliated_companies: Option<Vec<AffiliatedCompany>>
§updates: Option<Vec<CompanyUpdate>>
§follower_count: Option<Option<i32>>
Implementations§
Source§impl LinkedinSchool
impl LinkedinSchool
pub fn new() -> LinkedinSchool
Trait Implementations§
Source§impl Clone for LinkedinSchool
impl Clone for LinkedinSchool
Source§fn clone(&self) -> LinkedinSchool
fn clone(&self) -> LinkedinSchool
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for LinkedinSchool
impl Debug for LinkedinSchool
Source§impl Default for LinkedinSchool
impl Default for LinkedinSchool
Source§fn default() -> LinkedinSchool
fn default() -> LinkedinSchool
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LinkedinSchool
impl<'de> Deserialize<'de> for LinkedinSchool
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 LinkedinSchool
impl PartialEq for LinkedinSchool
Source§impl Serialize for LinkedinSchool
impl Serialize for LinkedinSchool
impl StructuralPartialEq for LinkedinSchool
Auto Trait Implementations§
impl Freeze for LinkedinSchool
impl RefUnwindSafe for LinkedinSchool
impl Send for LinkedinSchool
impl Sync for LinkedinSchool
impl Unpin for LinkedinSchool
impl UnwindSafe for LinkedinSchool
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