pub struct SectorConstituent {
pub symbol: String,
pub name: String,
pub latest_price: f64,
pub change_pct: f64,
pub main_net_inflow: Option<f64>,
}Fields§
§symbol: String§name: String§latest_price: f64§change_pct: f64§main_net_inflow: Option<f64>Trait Implementations§
Source§impl Clone for SectorConstituent
impl Clone for SectorConstituent
Source§fn clone(&self) -> SectorConstituent
fn clone(&self) -> SectorConstituent
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 SectorConstituent
impl Debug for SectorConstituent
Source§impl<'de> Deserialize<'de> for SectorConstituent
impl<'de> Deserialize<'de> for SectorConstituent
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 SectorConstituent
impl RefUnwindSafe for SectorConstituent
impl Send for SectorConstituent
impl Sync for SectorConstituent
impl Unpin for SectorConstituent
impl UnsafeUnpin for SectorConstituent
impl UnwindSafe for SectorConstituent
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