Struct crypto_msg_parser::OrderBookMsg[][src]

pub struct OrderBookMsg {
    pub exchange: String,
    pub market_type: MarketType,
    pub symbol: String,
    pub pair: String,
    pub msg_type: MessageType,
    pub timestamp: i64,
    pub asks: Vec<Order>,
    pub bids: Vec<Order>,
    pub snapshot: bool,
    pub json: String,
}
Expand description

Level2 orderbook 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

asks: Vec<Order>

sorted in ascending order by price if snapshot=true, otherwise not sorted

bids: Vec<Order>

sorted in descending order by price if snapshot=true, otherwise not sorted

snapshot: booljson: 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