pub struct KeyExecutivesMeta {
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
KeyExecutivesMeta : Meta information about the instrument
Fields§
§symbol: Option<String>Ticker symbol of instrument
name: Option<String>Name of the company
currency: Option<String>Currency code in which the instrument is denominated
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 KeyExecutivesMeta
impl KeyExecutivesMeta
Sourcepub fn new() -> KeyExecutivesMeta
pub fn new() -> KeyExecutivesMeta
Meta information about the instrument
Trait Implementations§
Source§impl Clone for KeyExecutivesMeta
impl Clone for KeyExecutivesMeta
Source§fn clone(&self) -> KeyExecutivesMeta
fn clone(&self) -> KeyExecutivesMeta
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 KeyExecutivesMeta
impl Debug for KeyExecutivesMeta
Source§impl Default for KeyExecutivesMeta
impl Default for KeyExecutivesMeta
Source§fn default() -> KeyExecutivesMeta
fn default() -> KeyExecutivesMeta
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for KeyExecutivesMeta
impl<'de> Deserialize<'de> for KeyExecutivesMeta
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 KeyExecutivesMeta
impl PartialEq for KeyExecutivesMeta
Source§impl Serialize for KeyExecutivesMeta
impl Serialize for KeyExecutivesMeta
impl StructuralPartialEq for KeyExecutivesMeta
Auto Trait Implementations§
impl Freeze for KeyExecutivesMeta
impl RefUnwindSafe for KeyExecutivesMeta
impl Send for KeyExecutivesMeta
impl Sync for KeyExecutivesMeta
impl Unpin for KeyExecutivesMeta
impl UnwindSafe for KeyExecutivesMeta
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