pub struct CCDerIndicesMarkets {
pub type_: String,
pub exchange_status: String,
pub mapped_instrument_total: i64,
pub unmapped_instruments_total: i64,
pub instrument_status: CCInstrumentStatus,
}
Expand description
Derivatives Indices: Markets
Fields§
§type_: String
Type of the message.
exchange_status: String
The status of the echange. We only poll / stream / connect to the ACTIVE ones, for the RETIRED ones we no longer query for data.
mapped_instrument_total: i64
The total number of instruments that have been verified by our mapping team and have been properly assigned with a base, quote, mapping function, and other necessary fields. This is done to ensure that pairs like XXBTZUSD are accurately mapped to BTC-USD and that the pair refers to the correct assets rather than using the same asset id to represent different assets.
unmapped_instruments_total: i64
The number of instruments that have not yet been verified by our mapping team.
instrument_status: CCInstrumentStatus
An object with the total number of instrument for each of the available instrument statuses.
Trait Implementations§
Source§impl Debug for CCDerIndicesMarkets
impl Debug for CCDerIndicesMarkets
Source§impl<'de> Deserialize<'de> for CCDerIndicesMarkets
impl<'de> Deserialize<'de> for CCDerIndicesMarkets
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 CCDerIndicesMarkets
impl RefUnwindSafe for CCDerIndicesMarkets
impl Send for CCDerIndicesMarkets
impl Sync for CCDerIndicesMarkets
impl Unpin for CCDerIndicesMarkets
impl UnwindSafe for CCDerIndicesMarkets
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