pub struct EpsTrend {
pub period: String,
pub current: Option<f64>,
pub days_7_ago: Option<f64>,
pub days_30_ago: Option<f64>,
pub days_60_ago: Option<f64>,
pub days_90_ago: Option<f64>,
}Expand description
EPS trend data showing how estimates have changed over time
Fields§
§period: String§current: Option<f64>§days_7_ago: Option<f64>§days_30_ago: Option<f64>§days_60_ago: Option<f64>§days_90_ago: Option<f64>Trait Implementations§
Source§impl<'de> Deserialize<'de> for EpsTrend
impl<'de> Deserialize<'de> for EpsTrend
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 EpsTrend
impl RefUnwindSafe for EpsTrend
impl Send for EpsTrend
impl Sync for EpsTrend
impl Unpin for EpsTrend
impl UnsafeUnpin for EpsTrend
impl UnwindSafe for EpsTrend
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