KeyMetrics

Struct KeyMetrics 

Source
pub struct KeyMetrics {
Show 61 fields pub symbol: String, pub date: String, pub calendar_year: String, pub period: String, pub revenue_per_share: f64, pub net_income_per_share: f64, pub operating_cash_flow_per_share: f64, pub free_cash_flow_per_share: f64, pub cash_per_share: f64, pub book_value_per_share: f64, pub tangible_book_value_per_share: f64, pub shareholders_equity_per_share: f64, pub interest_debt_per_share: f64, pub market_cap: i64, pub enterprise_value: i64, pub pe_ratio: f64, pub price_to_sales_ratio: f64, pub pocf_ratio: f64, pub pfcf_ratio: f64, pub pb_ratio: f64, pub ptb_ratio: f64, pub ev_to_sales: f64, pub enterprise_value_over_ebitda: f64, pub ev_to_operating_cash_flow: f64, pub ev_to_free_cash_flow: f64, pub earnings_yield: f64, pub free_cash_flow_yield: f64, pub debt_to_equity: f64, pub debt_to_assets: f64, pub net_debt_to_ebitda: f64, pub current_ratio: f64, pub interest_coverage: f64, pub income_quality: f64, pub dividend_yield: f64, pub payout_ratio: f64, pub sales_general_and_administrative_to_revenue: f64, pub research_and_ddevelopement_to_revenue: f64, pub intangibles_to_total_assets: f64, pub capex_to_operating_cash_flow: f64, pub capex_to_revenue: f64, pub capex_to_depreciation: f64, pub stock_based_compensation_to_revenue: f64, pub graham_number: f64, pub roic: f64, pub return_on_tangible_assets: f64, pub graham_net_net: f64, pub working_capital: i64, pub tangible_asset_value: i64, pub net_current_asset_value: i64, pub invested_capital: i64, pub average_receivables: i64, pub average_payables: i64, pub average_inventory: i64, pub days_sales_outstanding: f64, pub days_payables_outstanding: f64, pub days_of_inventory_on_hand: f64, pub receivables_turnover: f64, pub payables_turnover: f64, pub inventory_turnover: f64, pub roe: f64, pub capex_per_share: f64,
}
Expand description

Key metrics

Fields§

§symbol: String§date: String§calendar_year: String§period: String§revenue_per_share: f64§net_income_per_share: f64§operating_cash_flow_per_share: f64§free_cash_flow_per_share: f64§cash_per_share: f64§book_value_per_share: f64§tangible_book_value_per_share: f64§shareholders_equity_per_share: f64§interest_debt_per_share: f64§market_cap: i64§enterprise_value: i64§pe_ratio: f64§price_to_sales_ratio: f64§pocf_ratio: f64§pfcf_ratio: f64§pb_ratio: f64§ptb_ratio: f64§ev_to_sales: f64§enterprise_value_over_ebitda: f64§ev_to_operating_cash_flow: f64§ev_to_free_cash_flow: f64§earnings_yield: f64§free_cash_flow_yield: f64§debt_to_equity: f64§debt_to_assets: f64§net_debt_to_ebitda: f64§current_ratio: f64§interest_coverage: f64§income_quality: f64§dividend_yield: f64§payout_ratio: f64§sales_general_and_administrative_to_revenue: f64§research_and_ddevelopement_to_revenue: f64§intangibles_to_total_assets: f64§capex_to_operating_cash_flow: f64§capex_to_revenue: f64§capex_to_depreciation: f64§stock_based_compensation_to_revenue: f64§graham_number: f64§roic: f64§return_on_tangible_assets: f64§graham_net_net: f64§working_capital: i64§tangible_asset_value: i64§net_current_asset_value: i64§invested_capital: i64§average_receivables: i64§average_payables: i64§average_inventory: i64§days_sales_outstanding: f64§days_payables_outstanding: f64§days_of_inventory_on_hand: f64§receivables_turnover: f64§payables_turnover: f64§inventory_turnover: f64§roe: f64§capex_per_share: f64

Trait Implementations§

Source§

impl Clone for KeyMetrics

Source§

fn clone(&self) -> KeyMetrics

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for KeyMetrics

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for KeyMetrics

Source§

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 KeyMetrics

Source§

fn eq(&self, other: &KeyMetrics) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Serialize for KeyMetrics

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl StructuralPartialEq for KeyMetrics

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> PolicyExt for T
where T: ?Sized,

Source§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow only if self and other return Action::Follow. Read more
Source§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow if either self or other returns Action::Follow. Read more
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

Source§

impl<T> ErasedDestructor for T
where T: 'static,