Struct crypto_msg_parser::FundingRateMsg[][src]

pub struct FundingRateMsg {
    pub exchange: String,
    pub market_type: MarketType,
    pub symbol: String,
    pub pair: String,
    pub msg_type: MessageType,
    pub timestamp: i64,
    pub funding_rate: f64,
    pub funding_time: i64,
    pub estimated_rate: Option<f64>,
    pub json: String,
}
Expand description

Funding rate 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

funding_rate: f64funding_time: i64estimated_rate: Option<f64>json: 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