pub struct FinancialData {Show 30 fields
pub total_revenue: Option<FormattedValue>,
pub revenue_per_share: Option<FormattedValue>,
pub revenue_growth: Option<FormattedValue>,
pub gross_profits: Option<FormattedValue>,
pub gross_margins: Option<FormattedValue>,
pub ebitda: Option<FormattedValue>,
pub ebitda_margins: Option<FormattedValue>,
pub operating_margins: Option<FormattedValue>,
pub net_income_to_common: Option<FormattedValue>,
pub earnings_growth: Option<FormattedValue>,
pub profit_margins: Option<FormattedValue>,
pub return_on_assets: Option<FormattedValue>,
pub return_on_equity: Option<FormattedValue>,
pub total_cash: Option<FormattedValue>,
pub total_debt: Option<FormattedValue>,
pub total_cash_per_share: Option<FormattedValue>,
pub debt_to_equity: Option<FormattedValue>,
pub current_ratio: Option<FormattedValue>,
pub quick_ratio: Option<FormattedValue>,
pub operating_cash_flow: Option<FormattedValue>,
pub free_cash_flow: Option<FormattedValue>,
pub recommendation_mean: Option<FormattedValue>,
pub recommendation_key: Option<String>,
pub analyst_opinions_count: Option<FormattedValue>,
pub current_price: Option<FormattedValue>,
pub target_high_price: Option<FormattedValue>,
pub target_low_price: Option<FormattedValue>,
pub target_mean_price: Option<FormattedValue>,
pub target_median_price: Option<FormattedValue>,
pub max_age: Option<f64>,
}Fields§
§total_revenue: Option<FormattedValue>§revenue_growth: Option<FormattedValue>§gross_profits: Option<FormattedValue>§gross_margins: Option<FormattedValue>§ebitda: Option<FormattedValue>§ebitda_margins: Option<FormattedValue>§operating_margins: Option<FormattedValue>§net_income_to_common: Option<FormattedValue>§earnings_growth: Option<FormattedValue>§profit_margins: Option<FormattedValue>§return_on_assets: Option<FormattedValue>§return_on_equity: Option<FormattedValue>§total_cash: Option<FormattedValue>§total_debt: Option<FormattedValue>§debt_to_equity: Option<FormattedValue>§current_ratio: Option<FormattedValue>§quick_ratio: Option<FormattedValue>§operating_cash_flow: Option<FormattedValue>§free_cash_flow: Option<FormattedValue>§recommendation_mean: Option<FormattedValue>§recommendation_key: Option<String>§analyst_opinions_count: Option<FormattedValue>§current_price: Option<FormattedValue>§target_high_price: Option<FormattedValue>§target_low_price: Option<FormattedValue>§target_mean_price: Option<FormattedValue>§target_median_price: Option<FormattedValue>§max_age: Option<f64>Trait Implementations§
Source§impl Debug for FinancialData
impl Debug for FinancialData
Source§impl<'de> Deserialize<'de> for FinancialData
impl<'de> Deserialize<'de> for FinancialData
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 FinancialData
impl RefUnwindSafe for FinancialData
impl Send for FinancialData
impl Sync for FinancialData
impl Unpin for FinancialData
impl UnsafeUnpin for FinancialData
impl UnwindSafe for FinancialData
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§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> ⓘ
Converts
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> ⓘ
Converts
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 moreSource§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> Read<Exclusive, BecauseExclusive> for Twhere
T: ?Sized,
Source§impl<T> Serialize for T
impl<T> Serialize for T
fn erased_serialize(&self, serializer: &mut dyn Serializer) -> Result<(), Error>
fn do_erased_serialize( &self, serializer: &mut dyn Serializer, ) -> Result<(), ErrorImpl>
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.