pub struct EmployeeCount {
pub total_employee: Option<i32>,
pub linkedin_employee_count: Option<Option<i32>>,
pub linkdb_employee_count: Option<i32>,
pub regression_notice: Option<String>,
}Fields§
§total_employee: Option<i32>§linkedin_employee_count: Option<Option<i32>>The scraped value of employee count of this company from it’s LinkedIn profile. This value does not respect employement_status parameter. It will always return the curent employee count of this company from LinkedIn.
linkdb_employee_count: Option<i32>The total number of employees found in LinkDB for this company. This value is limited by pre-crawled LinkedIn profiles stored in LinkDB
regression_notice: Option<String>Implementations§
Source§impl EmployeeCount
impl EmployeeCount
pub fn new() -> EmployeeCount
Trait Implementations§
Source§impl Clone for EmployeeCount
impl Clone for EmployeeCount
Source§fn clone(&self) -> EmployeeCount
fn clone(&self) -> EmployeeCount
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 EmployeeCount
impl Debug for EmployeeCount
Source§impl Default for EmployeeCount
impl Default for EmployeeCount
Source§fn default() -> EmployeeCount
fn default() -> EmployeeCount
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EmployeeCount
impl<'de> Deserialize<'de> for EmployeeCount
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 EmployeeCount
impl PartialEq for EmployeeCount
Source§impl Serialize for EmployeeCount
impl Serialize for EmployeeCount
impl StructuralPartialEq for EmployeeCount
Auto Trait Implementations§
impl Freeze for EmployeeCount
impl RefUnwindSafe for EmployeeCount
impl Send for EmployeeCount
impl Sync for EmployeeCount
impl Unpin for EmployeeCount
impl UnwindSafe for EmployeeCount
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