pub struct Eod {
pub symbol: Option<String>,
pub exchange: Option<String>,
pub mic_code: Option<String>,
pub currency: Option<String>,
pub datetime: Option<String>,
pub close: Option<String>,
}Fields§
§symbol: Option<String>Symbol passed
exchange: Option<String>Exchange where instrument is traded
mic_code: Option<String>Market identifier code (MIC) under ISO 10383 standard
currency: Option<String>Currency in which instrument is denominated
datetime: Option<String>Datetime in defined timezone referring to when the bar with specified interval was opened
close: Option<String>The most recent end of day close price
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Eod
impl<'de> Deserialize<'de> for Eod
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
impl StructuralPartialEq for Eod
Auto Trait Implementations§
impl Freeze for Eod
impl RefUnwindSafe for Eod
impl Send for Eod
impl Sync for Eod
impl Unpin for Eod
impl UnwindSafe for Eod
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