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§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: f64Trait Implementations§
Source§impl Clone for KeyMetrics
impl Clone for KeyMetrics
Source§fn clone(&self) -> KeyMetrics
fn clone(&self) -> KeyMetrics
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 KeyMetrics
impl Debug for KeyMetrics
Source§impl<'de> Deserialize<'de> for KeyMetrics
impl<'de> Deserialize<'de> for KeyMetrics
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
Source§impl PartialEq for KeyMetrics
impl PartialEq for KeyMetrics
Source§impl Serialize for KeyMetrics
impl Serialize for KeyMetrics
impl StructuralPartialEq for KeyMetrics
Auto Trait Implementations§
impl Freeze for KeyMetrics
impl RefUnwindSafe for KeyMetrics
impl Send for KeyMetrics
impl Sync for KeyMetrics
impl Unpin for KeyMetrics
impl UnwindSafe for KeyMetrics
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