pub struct StatisticsMeta {
pub symbol: Option<String>,
pub name: Option<String>,
pub currency: Option<String>,
pub exchange: Option<String>,
pub mic_code: Option<String>,
pub exchange_timezone: Option<String>,
}Expand description
StatisticsMeta : Json object with request general information
Fields§
§symbol: Option<String>Symbol ticker of instrument
name: Option<String>Name of the company
currency: Option<String>Currency of the instrument
exchange: Option<String>Exchange where instrument is traded
mic_code: Option<String>Market identifier code (MIC) under ISO 10383 standard
exchange_timezone: Option<String>Timezone of the exchange
Implementations§
Source§impl StatisticsMeta
impl StatisticsMeta
Sourcepub fn new() -> StatisticsMeta
pub fn new() -> StatisticsMeta
Json object with request general information
Trait Implementations§
Source§impl Clone for StatisticsMeta
impl Clone for StatisticsMeta
Source§fn clone(&self) -> StatisticsMeta
fn clone(&self) -> StatisticsMeta
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 StatisticsMeta
impl Debug for StatisticsMeta
Source§impl Default for StatisticsMeta
impl Default for StatisticsMeta
Source§fn default() -> StatisticsMeta
fn default() -> StatisticsMeta
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for StatisticsMeta
impl<'de> Deserialize<'de> for StatisticsMeta
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 StatisticsMeta
impl PartialEq for StatisticsMeta
Source§impl Serialize for StatisticsMeta
impl Serialize for StatisticsMeta
impl StructuralPartialEq for StatisticsMeta
Auto Trait Implementations§
impl Freeze for StatisticsMeta
impl RefUnwindSafe for StatisticsMeta
impl Send for StatisticsMeta
impl Sync for StatisticsMeta
impl Unpin for StatisticsMeta
impl UnwindSafe for StatisticsMeta
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