pub struct EncCompany {Show 16 fields
pub name: Option<String>,
pub website: Option<String>,
pub employee_count: Option<i32>,
pub industry: Option<String>,
pub size: Option<String>,
pub description: Option<String>,
pub linkedin_url: Option<String>,
pub type: Option<String>,
pub domain: Option<String>,
pub country: Option<String>,
pub state: Option<String>,
pub city: Option<String>,
pub address: Option<String>,
pub founded_year: Option<String>,
pub logo_url: Option<String>,
pub followers_count: Option<i32>,
}
Fields§
§name: Option<String>
§website: Option<String>
§employee_count: Option<i32>
§industry: Option<String>
§size: Option<String>
§description: Option<String>
§linkedin_url: Option<String>
§type: Option<String>
§domain: Option<String>
§country: Option<String>
§state: Option<String>
§city: Option<String>
§address: Option<String>
§founded_year: Option<String>
§logo_url: Option<String>
§followers_count: Option<i32>
Trait Implementations§
Source§impl Clone for EncCompany
impl Clone for EncCompany
Source§fn clone(&self) -> EncCompany
fn clone(&self) -> EncCompany
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 EncCompany
impl Debug for EncCompany
Source§impl<'de> Deserialize<'de> for EncCompany
impl<'de> Deserialize<'de> for EncCompany
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 EncCompany
impl RefUnwindSafe for EncCompany
impl Send for EncCompany
impl Sync for EncCompany
impl Unpin for EncCompany
impl UnwindSafe for EncCompany
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