pub struct ChartMeta {
pub instrument_type: Option<String>,
pub regular_market_price: f64,
pub chart_previous_close: f64,
pub current_trading_period: Option<ChartCurrentTradingPeriod>,
}
Fields§
§instrument_type: Option<String>
§regular_market_price: f64
§chart_previous_close: f64
§current_trading_period: Option<ChartCurrentTradingPeriod>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for ChartMeta
impl<'de> Deserialize<'de> for ChartMeta
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 ChartMeta
impl RefUnwindSafe for ChartMeta
impl Send for ChartMeta
impl Sync for ChartMeta
impl Unpin for ChartMeta
impl UnwindSafe for ChartMeta
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