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