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