pub struct CompanyOverview {Show 32 fields
pub name: String,
pub company_name: String,
pub founded: String,
pub listing_date: String,
pub market: String,
pub region: String,
pub address: String,
pub office_address: String,
pub website: String,
pub issue_price: Option<Decimal>,
pub shares_offered: String,
pub chairman: String,
pub secretary: String,
pub audit_inst: String,
pub category: String,
pub year_end: String,
pub employees: String,
pub phone: String,
pub fax: String,
pub email: String,
pub legal_repr: String,
pub manager: String,
pub bus_license: String,
pub accounting_firm: String,
pub securities_rep: String,
pub legal_counsel: String,
pub zip_code: String,
pub ticker: String,
pub icon: String,
pub profile: String,
pub ads_ratio: String,
pub sector: i32,
}Expand description
Response for crate::FundamentalContext::company
Fields§
§name: StringShort name, e.g. "腾讯控股"
company_name: StringFull legal name
founded: StringFounding date
listing_date: StringListing date
market: StringPrimary listing market display name
region: StringMarket region code, e.g. "HK"
address: StringRegistered address
office_address: StringPrincipal office address
website: StringCompany website
issue_price: Option<Decimal>IPO issue price
Number of shares offered at IPO
chairman: StringChairman name
secretary: StringCompany secretary name
audit_inst: StringAuditing institution
category: StringCompany classification category
year_end: StringFiscal year end, e.g. "12 月 31 日"
employees: StringNumber of employees
phone: StringPhone number (API field name is "Phone")
fax: StringFax number
email: StringInvestor relations email
legal_repr: StringLegal representative
manager: StringCEO / Managing Director
bus_license: StringBusiness licence number
accounting_firm: StringAccounting firm
securities_rep: StringSecurities representative
legal_counsel: StringLegal counsel
zip_code: StringPostal code
ticker: StringExchange ticker code, e.g. "00700"
icon: StringURL to the company’s logo icon
profile: StringBusiness profile / description
ads_ratio: StringADS ratio (may be empty)
sector: i32Industry sector code
Trait Implementations§
Source§impl Clone for CompanyOverview
impl Clone for CompanyOverview
Source§fn clone(&self) -> CompanyOverview
fn clone(&self) -> CompanyOverview
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for CompanyOverview
impl Debug for CompanyOverview
Source§impl<'de> Deserialize<'de> for CompanyOverview
impl<'de> Deserialize<'de> for CompanyOverview
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>,
Auto Trait Implementations§
impl Freeze for CompanyOverview
impl RefUnwindSafe for CompanyOverview
impl Send for CompanyOverview
impl Sync for CompanyOverview
impl Unpin for CompanyOverview
impl UnsafeUnpin for CompanyOverview
impl UnwindSafe for CompanyOverview
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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>
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>
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