pub struct AnalystForecasts {
pub revenue_current_quarter: Option<f64>,
pub revenue_next_quarter: Option<f64>,
pub revenue_next_half_year: Option<f64>,
pub revenue_next_fiscal_year: Option<f64>,
pub eps_current_quarter: Option<f64>,
pub eps_next_quarter: Option<f64>,
pub eps_next_half_year: Option<f64>,
pub eps_next_fiscal_year: Option<f64>,
pub eps_surprise_recent_quarter: Option<f64>,
pub eps_surprise_percent_recent_quarter: Option<f64>,
pub forward_non_gaap_price_earnings: Option<f64>,
pub forward_price_earnings_fiscal_year: Option<f64>,
}Fields§
§revenue_current_quarter: Option<f64>§revenue_next_quarter: Option<f64>§revenue_next_half_year: Option<f64>§revenue_next_fiscal_year: Option<f64>§eps_current_quarter: Option<f64>§eps_next_quarter: Option<f64>§eps_next_half_year: Option<f64>§eps_next_fiscal_year: Option<f64>§eps_surprise_recent_quarter: Option<f64>§eps_surprise_percent_recent_quarter: Option<f64>§forward_non_gaap_price_earnings: Option<f64>§forward_price_earnings_fiscal_year: Option<f64>Trait Implementations§
Source§impl Clone for AnalystForecasts
impl Clone for AnalystForecasts
Source§fn clone(&self) -> AnalystForecasts
fn clone(&self) -> AnalystForecasts
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 AnalystForecasts
impl Debug for AnalystForecasts
Source§impl Default for AnalystForecasts
impl Default for AnalystForecasts
Source§fn default() -> AnalystForecasts
fn default() -> AnalystForecasts
Returns the “default value” for a type. Read more
Source§impl PartialEq for AnalystForecasts
impl PartialEq for AnalystForecasts
impl StructuralPartialEq for AnalystForecasts
Auto Trait Implementations§
impl Freeze for AnalystForecasts
impl RefUnwindSafe for AnalystForecasts
impl Send for AnalystForecasts
impl Sync for AnalystForecasts
impl Unpin for AnalystForecasts
impl UnsafeUnpin for AnalystForecasts
impl UnwindSafe for AnalystForecasts
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