pub struct RecommendationsMeta {
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
RecommendationsMeta : Metadata about the symbol
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 RecommendationsMeta
impl RecommendationsMeta
Sourcepub fn new() -> RecommendationsMeta
pub fn new() -> RecommendationsMeta
Metadata about the symbol
Trait Implementations§
Source§impl Clone for RecommendationsMeta
impl Clone for RecommendationsMeta
Source§fn clone(&self) -> RecommendationsMeta
fn clone(&self) -> RecommendationsMeta
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 RecommendationsMeta
impl Debug for RecommendationsMeta
Source§impl Default for RecommendationsMeta
impl Default for RecommendationsMeta
Source§fn default() -> RecommendationsMeta
fn default() -> RecommendationsMeta
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RecommendationsMeta
impl<'de> Deserialize<'de> for RecommendationsMeta
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 RecommendationsMeta
impl PartialEq for RecommendationsMeta
Source§impl Serialize for RecommendationsMeta
impl Serialize for RecommendationsMeta
impl StructuralPartialEq for RecommendationsMeta
Auto Trait Implementations§
impl Freeze for RecommendationsMeta
impl RefUnwindSafe for RecommendationsMeta
impl Send for RecommendationsMeta
impl Sync for RecommendationsMeta
impl Unpin for RecommendationsMeta
impl UnwindSafe for RecommendationsMeta
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