Struct crypto_msg_parser::BboMsg[][src]

pub struct BboMsg {
    pub exchange: String,
    pub market_type: MarketType,
    pub symbol: String,
    pub pair: String,
    pub msg_type: MessageType,
    pub timestamp: i64,
    pub json: String,
    pub bid_price: f64,
    pub bid_quantity: f64,
    pub ask_price: f64,
    pub ask_quantity: f64,
}

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

json: String

the original JSON message

bid_price: f64bid_quantity: f64ask_price: f64ask_quantity: f64

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