pub struct DerivativeExchangeTicker {
Show 17 fields pub symbol: String, pub base: String, pub target: String, pub trade_url: String, pub contract_type: String, pub last: f64, pub h24_percentage_change: f64, pub index: Option<f64>, pub index_basis_percentage: f64, pub bid_ask_spread: f64, pub funding_rate: f64, pub open_interest_usd: f64, pub h24_volume: f64, pub converted_volume: ConvertedVolume, pub converted_last: ConvertedLast, pub last_traded: i64, pub expired_at: Option<i64>,
}

Fields

symbol: Stringbase: Stringtarget: Stringtrade_url: Stringcontract_type: Stringlast: f64h24_percentage_change: f64index: Option<f64>index_basis_percentage: f64bid_ask_spread: f64funding_rate: f64open_interest_usd: f64h24_volume: f64converted_volume: ConvertedVolumeconverted_last: ConvertedLastlast_traded: i64expired_at: Option<i64>

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

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

Returns the argument unchanged.

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

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

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