pub struct BalanceSheetMeta {
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
BalanceSheetMeta : Metadata about the balance sheet
Fields§
§symbol: Option<String>Ticker symbol of instrument
name: Option<String>Name of the company
currency: Option<String>Currency of the balance sheet 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>Exchange timezone
period: Option<String>Values can be annual or quarterly
Implementations§
Source§impl BalanceSheetMeta
impl BalanceSheetMeta
Sourcepub fn new() -> BalanceSheetMeta
pub fn new() -> BalanceSheetMeta
Metadata about the balance sheet
Trait Implementations§
Source§impl Clone for BalanceSheetMeta
impl Clone for BalanceSheetMeta
Source§fn clone(&self) -> BalanceSheetMeta
fn clone(&self) -> BalanceSheetMeta
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 BalanceSheetMeta
impl Debug for BalanceSheetMeta
Source§impl Default for BalanceSheetMeta
impl Default for BalanceSheetMeta
Source§fn default() -> BalanceSheetMeta
fn default() -> BalanceSheetMeta
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BalanceSheetMeta
impl<'de> Deserialize<'de> for BalanceSheetMeta
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 BalanceSheetMeta
impl PartialEq for BalanceSheetMeta
Source§impl Serialize for BalanceSheetMeta
impl Serialize for BalanceSheetMeta
impl StructuralPartialEq for BalanceSheetMeta
Auto Trait Implementations§
impl Freeze for BalanceSheetMeta
impl RefUnwindSafe for BalanceSheetMeta
impl Send for BalanceSheetMeta
impl Sync for BalanceSheetMeta
impl Unpin for BalanceSheetMeta
impl UnwindSafe for BalanceSheetMeta
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