pub struct DerIndicesMarkets {
pub type_: String,
pub exchange_status: String,
pub mapped_instrument_total: i64,
pub unmapped_instruments_total: i64,
pub instrument_status: InstrumentStatus,
}Expand description
Derivatives Indices: Markets
Fields§
§type_: StringType of the message.
exchange_status: StringThe 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: i64The 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: i64The number of instruments that have not yet been verified by our mapping team.
instrument_status: InstrumentStatusAn object with the total number of instrument for each of the available instrument statuses.
Trait Implementations§
Source§impl Clone for DerIndicesMarkets
impl Clone for DerIndicesMarkets
Source§fn clone(&self) -> DerIndicesMarkets
fn clone(&self) -> DerIndicesMarkets
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 DerIndicesMarkets
impl Debug for DerIndicesMarkets
Source§impl<'de> Deserialize<'de> for DerIndicesMarkets
impl<'de> Deserialize<'de> for DerIndicesMarkets
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 DerIndicesMarkets
impl RefUnwindSafe for DerIndicesMarkets
impl Send for DerIndicesMarkets
impl Sync for DerIndicesMarkets
impl Unpin for DerIndicesMarkets
impl UnsafeUnpin for DerIndicesMarkets
impl UnwindSafe for DerIndicesMarkets
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