pub struct SectorHistorical {
pub date: String,
pub technology_changes_percentage: Option<f64>,
pub healthcare_changes_percentage: Option<f64>,
pub financial_services_changes_percentage: Option<f64>,
pub consumer_cyclical_changes_percentage: Option<f64>,
pub industrials_changes_percentage: Option<f64>,
pub energy_changes_percentage: Option<f64>,
pub basic_materials_changes_percentage: Option<f64>,
pub consumer_defensive_changes_percentage: Option<f64>,
pub real_estate_changes_percentage: Option<f64>,
pub communication_services_changes_percentage: Option<f64>,
pub utilities_changes_percentage: Option<f64>,
}Expand description
Historical sector performance
Fields§
§date: StringDate
technology_changes_percentage: Option<f64>Technology sector performance
healthcare_changes_percentage: Option<f64>Healthcare sector performance
financial_services_changes_percentage: Option<f64>Financial sector performance
consumer_cyclical_changes_percentage: Option<f64>Consumer Cyclical sector performance
industrials_changes_percentage: Option<f64>Industrials sector performance
energy_changes_percentage: Option<f64>Energy sector performance
basic_materials_changes_percentage: Option<f64>Basic Materials sector performance
consumer_defensive_changes_percentage: Option<f64>Consumer Defensive sector performance
real_estate_changes_percentage: Option<f64>Real Estate sector performance
communication_services_changes_percentage: Option<f64>Communication Services sector performance
utilities_changes_percentage: Option<f64>Utilities sector performance
Trait Implementations§
Source§impl Clone for SectorHistorical
impl Clone for SectorHistorical
Source§fn clone(&self) -> SectorHistorical
fn clone(&self) -> SectorHistorical
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 SectorHistorical
impl Debug for SectorHistorical
Source§impl<'de> Deserialize<'de> for SectorHistorical
impl<'de> Deserialize<'de> for SectorHistorical
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 SectorHistorical
impl RefUnwindSafe for SectorHistorical
impl Send for SectorHistorical
impl Sync for SectorHistorical
impl Unpin for SectorHistorical
impl UnwindSafe for SectorHistorical
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