pub struct BulkEarningsEstimate {
pub symbol: Option<String>,
pub date: Option<String>,
pub estimated_revenue_low: Option<f64>,
pub estimated_revenue_high: Option<f64>,
pub estimated_revenue_avg: Option<f64>,
pub estimated_eps_avg: Option<f64>,
pub estimated_eps_high: Option<f64>,
pub estimated_eps_low: Option<f64>,
pub number_analyst_estimated_revenue: Option<i32>,
pub number_analyst_estimated_eps: Option<i32>,
}Expand description
Bulk earnings estimates
Fields§
§symbol: Option<String>Symbol
date: Option<String>Date
estimated_revenue_low: Option<f64>Estimated revenue low
estimated_revenue_high: Option<f64>Estimated revenue high
estimated_revenue_avg: Option<f64>Estimated revenue avg
estimated_eps_avg: Option<f64>Estimated EPS avg
estimated_eps_high: Option<f64>Estimated EPS high
estimated_eps_low: Option<f64>Estimated EPS low
number_analyst_estimated_revenue: Option<i32>Number of analysts
number_analyst_estimated_eps: Option<i32>Number of EPS analysts
Trait Implementations§
Source§impl Clone for BulkEarningsEstimate
impl Clone for BulkEarningsEstimate
Source§fn clone(&self) -> BulkEarningsEstimate
fn clone(&self) -> BulkEarningsEstimate
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 BulkEarningsEstimate
impl Debug for BulkEarningsEstimate
Source§impl<'de> Deserialize<'de> for BulkEarningsEstimate
impl<'de> Deserialize<'de> for BulkEarningsEstimate
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 BulkEarningsEstimate
impl RefUnwindSafe for BulkEarningsEstimate
impl Send for BulkEarningsEstimate
impl Sync for BulkEarningsEstimate
impl Unpin for BulkEarningsEstimate
impl UnwindSafe for BulkEarningsEstimate
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