pub struct FclCompany {Show 15 fields
pub name: Option<String>,
pub website: Option<String>,
pub employee_count: Option<i32>,
pub size: Option<String>,
pub industry: Option<String>,
pub description: Option<String>,
pub linkedin_url: 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>
§size: Option<String>
§industry: Option<String>
§description: Option<String>
§linkedin_url: 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 FclCompany
impl Clone for FclCompany
Source§fn clone(&self) -> FclCompany
fn clone(&self) -> FclCompany
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 FclCompany
impl Debug for FclCompany
Source§impl<'de> Deserialize<'de> for FclCompany
impl<'de> Deserialize<'de> for FclCompany
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 FclCompany
impl RefUnwindSafe for FclCompany
impl Send for FclCompany
impl Sync for FclCompany
impl Unpin for FclCompany
impl UnwindSafe for FclCompany
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