Struct crypto_markets::Market[][src]

pub struct Market {
Show fields pub exchange: String, pub market_type: MarketType, pub symbol: String, pub pair: String, pub base: String, pub quote: String, pub settle: String, pub base_id: String, pub quote_id: String, pub active: bool, pub margin: bool, pub fees: Fees, pub precision: Precision, pub min_quantity: MinQuantity, pub contract_value: Option<f64>, pub delivery_date: Option<u64>, pub info: Map<String, Value>,
}
Expand description

Market contains all information about a market

Fields

exchange: String

exchange name

market_type: MarketType

Market type

symbol: String

exchange-specific trading symbol, used by RESTful API

pair: String

unified pair of trading currencies, e.g., BTC_USDT

base: String

unified base currency, e.g., BTC

quote: String

unified quote currency, e.g., USDT

settle: Stringbase_id: String

exchange-specific base currency

quote_id: String

exchange-specific quote currency

active: bool

market status

margin: bool

Margin enabled.

  • All contract markets are margin enabled, including future, swap and option.
  • Only a few exchanges have spot market with margin enabled.
fees: Feesprecision: Precision

number of decimal digits “after the dot”

min_quantity: MinQuantity

minimum quantity when placing orders

contract_value: Option<f64>delivery_date: Option<u64>

Delivery date, unix timestamp in milliseconds, only applicable for future and option markets.

info: Map<String, Value>

the original JSON string retrieved from the exchange

Trait Implementations

Deserialize this value from the given Serde deserializer. Read more

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.