Struct crypto_msg_parser::TradeMsg[][src]

pub struct TradeMsg {
Show 13 fields pub exchange: String, pub market_type: MarketType, pub symbol: String, pub pair: String, pub msg_type: MessageType, pub timestamp: i64, pub price: f64, pub quantity_base: f64, pub quantity_quote: f64, pub quantity_contract: Option<f64>, pub side: TradeSide, pub trade_id: String, pub json: String,
}
Expand description

Realtime trade message.

Fields

exchange: String

The exchange name, unique for each exchage

market_type: MarketType

Market type

symbol: String

Exchange-specific trading symbol or id, recognized by RESTful API

pair: String

Unified pair, base/quote, e.g., BTC/USDT

msg_type: MessageType

Message type

timestamp: i64

Unix timestamp, in milliseconds

price: f64

price

quantity_base: f64quantity_quote: f64quantity_contract: Option<f64>

Number of contracts, always None for Spot

side: TradeSide

Which side is taker

trade_id: Stringjson: String

the original JSON message

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.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more