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