pub struct AnalystEstimates {Show 22 fields
pub symbol: String,
pub date: String,
pub estimated_revenue_low: i64,
pub estimated_revenue_high: i64,
pub estimated_revenue_avg: i64,
pub estimated_ebitda_low: i64,
pub estimated_ebitda_high: i64,
pub estimated_ebitda_avg: i64,
pub estimated_ebit_low: i64,
pub estimated_ebit_high: i64,
pub estimated_ebit_avg: i64,
pub estimated_net_income_low: i64,
pub estimated_net_income_high: i64,
pub estimated_net_income_avg: i64,
pub estimated_sga_expense_low: i64,
pub estimated_sga_expense_high: i64,
pub estimated_sga_expense_avg: i64,
pub estimated_eps_avg: f64,
pub estimated_eps_high: f64,
pub estimated_eps_low: f64,
pub number_analyst_estimated_revenue: i32,
pub number_analysts_estimated_eps: i32,
}Expand description
Analyst estimates
Fields§
§symbol: String§date: String§estimated_revenue_low: i64§estimated_revenue_high: i64§estimated_revenue_avg: i64§estimated_ebitda_low: i64§estimated_ebitda_high: i64§estimated_ebitda_avg: i64§estimated_ebit_low: i64§estimated_ebit_high: i64§estimated_ebit_avg: i64§estimated_net_income_low: i64§estimated_net_income_high: i64§estimated_net_income_avg: i64§estimated_sga_expense_low: i64§estimated_sga_expense_high: i64§estimated_sga_expense_avg: i64§estimated_eps_avg: f64§estimated_eps_high: f64§estimated_eps_low: f64§number_analyst_estimated_revenue: i32§number_analysts_estimated_eps: i32Trait Implementations§
Source§impl Clone for AnalystEstimates
impl Clone for AnalystEstimates
Source§fn clone(&self) -> AnalystEstimates
fn clone(&self) -> AnalystEstimates
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 AnalystEstimates
impl Debug for AnalystEstimates
Source§impl<'de> Deserialize<'de> for AnalystEstimates
impl<'de> Deserialize<'de> for AnalystEstimates
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 AnalystEstimates
impl PartialEq for AnalystEstimates
Source§impl Serialize for AnalystEstimates
impl Serialize for AnalystEstimates
impl StructuralPartialEq for AnalystEstimates
Auto Trait Implementations§
impl Freeze for AnalystEstimates
impl RefUnwindSafe for AnalystEstimates
impl Send for AnalystEstimates
impl Sync for AnalystEstimates
impl Unpin for AnalystEstimates
impl UnwindSafe for AnalystEstimates
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