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