pub struct GrowthEstimate {
pub period: String,
pub stock: Option<f64>,
pub industry: Option<f64>,
pub sector: Option<f64>,
pub index: Option<f64>,
}Expand description
Growth estimates comparing stock to industry/sector/index
Fields§
§period: String§stock: Option<f64>§industry: Option<f64>§sector: Option<f64>§index: Option<f64>Trait Implementations§
Source§impl Clone for GrowthEstimate
impl Clone for GrowthEstimate
Source§fn clone(&self) -> GrowthEstimate
fn clone(&self) -> GrowthEstimate
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 GrowthEstimate
impl Debug for GrowthEstimate
Source§impl<'de> Deserialize<'de> for GrowthEstimate
impl<'de> Deserialize<'de> for GrowthEstimate
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 GrowthEstimate
impl RefUnwindSafe for GrowthEstimate
impl Send for GrowthEstimate
impl Sync for GrowthEstimate
impl Unpin for GrowthEstimate
impl UnsafeUnpin for GrowthEstimate
impl UnwindSafe for GrowthEstimate
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