pub struct MoversUpdate {
pub actives: Option<Vec<MarketMover>>,
pub gainers: Option<Vec<MarketMover>>,
pub losers: Option<Vec<MarketMover>>,
}Expand description
Market movers update containing actives, gainers, and losers.
Fields§
§actives: Option<Vec<MarketMover>>Most active stocks
gainers: Option<Vec<MarketMover>>Top gaining stocks
losers: Option<Vec<MarketMover>>Top losing stocks
Trait Implementations§
Source§impl Clone for MoversUpdate
impl Clone for MoversUpdate
Source§fn clone(&self) -> MoversUpdate
fn clone(&self) -> MoversUpdate
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 MoversUpdate
impl Debug for MoversUpdate
Source§impl<'de> Deserialize<'de> for MoversUpdate
impl<'de> Deserialize<'de> for MoversUpdate
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 MoversUpdate
impl RefUnwindSafe for MoversUpdate
impl Send for MoversUpdate
impl Sync for MoversUpdate
impl Unpin for MoversUpdate
impl UnwindSafe for MoversUpdate
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