pub struct CashFlowMeta {
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
CashFlowMeta : Meta information about the response
Fields§
§symbol: Option<String>Symbol ticker of instrument
name: Option<String>Name of the company
currency: Option<String>Currency of the cash flow data 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>Period of the cash flow data (Annual or Quarterly)
Implementations§
Source§impl CashFlowMeta
impl CashFlowMeta
Sourcepub fn new() -> CashFlowMeta
pub fn new() -> CashFlowMeta
Meta information about the response
Trait Implementations§
Source§impl Clone for CashFlowMeta
impl Clone for CashFlowMeta
Source§fn clone(&self) -> CashFlowMeta
fn clone(&self) -> CashFlowMeta
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 CashFlowMeta
impl Debug for CashFlowMeta
Source§impl Default for CashFlowMeta
impl Default for CashFlowMeta
Source§fn default() -> CashFlowMeta
fn default() -> CashFlowMeta
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CashFlowMeta
impl<'de> Deserialize<'de> for CashFlowMeta
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 CashFlowMeta
impl PartialEq for CashFlowMeta
Source§impl Serialize for CashFlowMeta
impl Serialize for CashFlowMeta
impl StructuralPartialEq for CashFlowMeta
Auto Trait Implementations§
impl Freeze for CashFlowMeta
impl RefUnwindSafe for CashFlowMeta
impl Send for CashFlowMeta
impl Sync for CashFlowMeta
impl Unpin for CashFlowMeta
impl UnwindSafe for CashFlowMeta
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