pub struct StockEquitiesTickerSnapshot {
pub day: StockEquitiesAggregates,
pub last_quote: StockEquitiesQuote,
pub last_trade: StockEquitiesHistoricTrade,
pub min: StockEquitiesAggregates,
pub prev_day: StockEquitiesAggregates,
pub ticker: String,
pub todays_change: f64,
pub todays_change_perc: f64,
pub updated: u64,
}
Fields§
§day: StockEquitiesAggregates
§last_quote: StockEquitiesQuote
§last_trade: StockEquitiesHistoricTrade
§min: StockEquitiesAggregates
§prev_day: StockEquitiesAggregates
§ticker: String
§todays_change: f64
§todays_change_perc: f64
§updated: u64
Trait Implementations§
Source§impl Clone for StockEquitiesTickerSnapshot
impl Clone for StockEquitiesTickerSnapshot
Source§fn clone(&self) -> StockEquitiesTickerSnapshot
fn clone(&self) -> StockEquitiesTickerSnapshot
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 StockEquitiesTickerSnapshot
impl Debug for StockEquitiesTickerSnapshot
Source§impl<'de> Deserialize<'de> for StockEquitiesTickerSnapshot
impl<'de> Deserialize<'de> for StockEquitiesTickerSnapshot
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 StockEquitiesTickerSnapshot
impl RefUnwindSafe for StockEquitiesTickerSnapshot
impl Send for StockEquitiesTickerSnapshot
impl Sync for StockEquitiesTickerSnapshot
impl Unpin for StockEquitiesTickerSnapshot
impl UnwindSafe for StockEquitiesTickerSnapshot
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