pub struct MarketCapMeta {
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
MarketCapMeta : Meta information about the company
Fields§
§symbol: Option<String>Ticker of the company
name: Option<String>Name of the company
currency: Option<String>Currency in which instrument is traded by ISO 4217 standard
exchange: Option<String>Exchange name where the company is listed
mic_code: Option<String>Market Identifier Code (MIC) under ISO 10383 standard
exchange_timezone: Option<String>Exchange timezone
Implementations§
Source§impl MarketCapMeta
impl MarketCapMeta
Sourcepub fn new() -> MarketCapMeta
pub fn new() -> MarketCapMeta
Meta information about the company
Trait Implementations§
Source§impl Clone for MarketCapMeta
impl Clone for MarketCapMeta
Source§fn clone(&self) -> MarketCapMeta
fn clone(&self) -> MarketCapMeta
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 MarketCapMeta
impl Debug for MarketCapMeta
Source§impl Default for MarketCapMeta
impl Default for MarketCapMeta
Source§fn default() -> MarketCapMeta
fn default() -> MarketCapMeta
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MarketCapMeta
impl<'de> Deserialize<'de> for MarketCapMeta
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 MarketCapMeta
impl PartialEq for MarketCapMeta
Source§impl Serialize for MarketCapMeta
impl Serialize for MarketCapMeta
impl StructuralPartialEq for MarketCapMeta
Auto Trait Implementations§
impl Freeze for MarketCapMeta
impl RefUnwindSafe for MarketCapMeta
impl Send for MarketCapMeta
impl Sync for MarketCapMeta
impl Unpin for MarketCapMeta
impl UnwindSafe for MarketCapMeta
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