pub struct PolygonTickerDetails {
pub ticker: String,
pub name: String,
pub market: String,
pub locale: String,
pub primary_exchange: String,
pub ticker_type: String,
pub active: bool,
pub currency_name: String,
pub cik: Option<String>,
pub description: Option<String>,
}Fields§
§ticker: String§name: String§market: String§locale: String§primary_exchange: String§ticker_type: String§active: bool§currency_name: String§cik: Option<String>§description: Option<String>Trait Implementations§
Source§impl Clone for PolygonTickerDetails
impl Clone for PolygonTickerDetails
Source§fn clone(&self) -> PolygonTickerDetails
fn clone(&self) -> PolygonTickerDetails
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 PolygonTickerDetails
impl Debug for PolygonTickerDetails
Source§impl<'de> Deserialize<'de> for PolygonTickerDetails
impl<'de> Deserialize<'de> for PolygonTickerDetails
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
Auto Trait Implementations§
impl Freeze for PolygonTickerDetails
impl RefUnwindSafe for PolygonTickerDetails
impl Send for PolygonTickerDetails
impl Sync for PolygonTickerDetails
impl Unpin for PolygonTickerDetails
impl UnwindSafe for PolygonTickerDetails
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