pub struct TimeSeriesMultMeta {
pub symbol: Option<String>,
pub interval: Option<String>,
pub currency: Option<String>,
pub exchange_timezone: Option<String>,
pub exchange: Option<String>,
pub mic_code: Option<String>,
pub type: Option<String>,
pub indicator: Option<Box<TimeSeriesMultMetaIndicator>>,
}Expand description
TimeSeriesMultMeta : Json object with request general information
Fields§
§symbol: Option<String>The ticker symbol of an instrument for which data was requested.
interval: Option<String>The time gap between consecutive data points.
currency: Option<String>The currency of a traded instrument.
exchange_timezone: Option<String>The timezone of the exchange where the instrument is traded.
exchange: Option<String>The exchange name where the instrument is traded.
mic_code: Option<String>The Market Identifier Code (MIC) of the exchange where the instrument is traded.
type: Option<String>The asset class to which the instrument belongs.
indicator: Option<Box<TimeSeriesMultMetaIndicator>>Implementations§
Source§impl TimeSeriesMultMeta
impl TimeSeriesMultMeta
Sourcepub fn new() -> TimeSeriesMultMeta
pub fn new() -> TimeSeriesMultMeta
Json object with request general information
Trait Implementations§
Source§impl Clone for TimeSeriesMultMeta
impl Clone for TimeSeriesMultMeta
Source§fn clone(&self) -> TimeSeriesMultMeta
fn clone(&self) -> TimeSeriesMultMeta
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 TimeSeriesMultMeta
impl Debug for TimeSeriesMultMeta
Source§impl Default for TimeSeriesMultMeta
impl Default for TimeSeriesMultMeta
Source§fn default() -> TimeSeriesMultMeta
fn default() -> TimeSeriesMultMeta
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TimeSeriesMultMeta
impl<'de> Deserialize<'de> for TimeSeriesMultMeta
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
Source§impl PartialEq for TimeSeriesMultMeta
impl PartialEq for TimeSeriesMultMeta
Source§impl Serialize for TimeSeriesMultMeta
impl Serialize for TimeSeriesMultMeta
impl StructuralPartialEq for TimeSeriesMultMeta
Auto Trait Implementations§
impl Freeze for TimeSeriesMultMeta
impl RefUnwindSafe for TimeSeriesMultMeta
impl Send for TimeSeriesMultMeta
impl Sync for TimeSeriesMultMeta
impl Unpin for TimeSeriesMultMeta
impl UnwindSafe for TimeSeriesMultMeta
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