pub struct IndexConstituent {
pub symbol: String,
pub name: Option<String>,
pub sector: Option<String>,
pub sub_sector: Option<String>,
pub headquarters_location: Option<String>,
pub date_first_added: Option<String>,
pub cik: Option<String>,
pub founded: Option<String>,
}Expand description
Index constituent (component stock)
Fields§
§symbol: StringStock symbol
name: Option<String>Company name
sector: Option<String>Sector
sub_sector: Option<String>Sub-sector
headquarters_location: Option<String>Headquarters location
date_first_added: Option<String>Date first added
cik: Option<String>CIK number
founded: Option<String>Date founded
Trait Implementations§
Source§impl Clone for IndexConstituent
impl Clone for IndexConstituent
Source§fn clone(&self) -> IndexConstituent
fn clone(&self) -> IndexConstituent
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 IndexConstituent
impl Debug for IndexConstituent
Source§impl<'de> Deserialize<'de> for IndexConstituent
impl<'de> Deserialize<'de> for IndexConstituent
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 IndexConstituent
impl RefUnwindSafe for IndexConstituent
impl Send for IndexConstituent
impl Sync for IndexConstituent
impl Unpin for IndexConstituent
impl UnwindSafe for IndexConstituent
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